diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Core/compinstall | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 19be62766..c250ed4fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-05-10 Peter Stephenson <pws@cambridgesiliconradio.com> + + * Naoki Wakamatsu: 11287: Completion/Core/compinstall: tab had + incorrectly turned to spaces. + 2000-05-10 Sven Wischnowsky <wischnow@zsh.org> * 11294: Src/Zle/computil.c: fix for `-+opt' with mutex list diff --git a/Completion/Core/compinstall b/Completion/Core/compinstall index 9c6e8f9de..8b907d88e 100644 --- a/Completion/Core/compinstall +++ b/Completion/Core/compinstall @@ -91,7 +91,7 @@ fi ifile=$newifile if [[ $foundold = true ]]; then - sed -n "/^[ ]*$startline/,/^[ ]*$endline/p" $ifile | + sed -n "/^[ ]*$startline/,/^[ ]*$endline/p" $ifile | # Use the default read behaviour to handle any continuation lines. while read line; do (( lines_found++ )) |