mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
31840: "read" needs IFS unset to avoid stripping whitespace in makefiles
This commit is contained in:
parent
978b5bcc8d
commit
87c482d751
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-10-18 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 31840: Completion/Unix/Command/_make: "read" used wrong $IFS
|
||||
|
||||
2013-10-17 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 31836 (cf. 31823): Doc/Zsh/params.yo, Src/hist.c: add
|
||||
|
|
|
@ -59,7 +59,7 @@ _make-expandVars() {
|
|||
}
|
||||
|
||||
_make-parseMakefile () {
|
||||
local input var val target dep TAB=$'\t' dir=$1 tmp
|
||||
local input var val target dep TAB=$'\t' dir=$1 tmp IFS=
|
||||
|
||||
while read input
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue