picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit fa60b1ce05289a631ea71551b0c6d6d64620e21f
parent 1da83efe18220000e75da66ae8e877012776c869
Author: Alexander Burger <abu@software-lab.de>
Date:   Tue,  3 Apr 2012 07:30:41 +0200

Minor: White space
Diffstat:
Mlib/bash_completion | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/bash_completion b/lib/bash_completion @@ -5,11 +5,11 @@ have pil && _pil() { local CMD=$( - echo ${COMP_WORDS[0]} - for ARG in "${COMP_WORDS[@]:1:$((COMP_CWORD-1))}" - do - test "${ARG:0:1}" = "-" || echo "$ARG" - done ) + echo ${COMP_WORDS[0]} + for ARG in "${COMP_WORDS[@]:1:$((COMP_CWORD-1))}" + do + test "${ARG:0:1}" = "-" || echo "$ARG" + done ) local IFS=$'\n' COMPREPLY=($($CMD /usr/lib/picolisp/lib/complete.l "${COMP_WORDS[$COMP_CWORD]}" -bye +))