7 Bug-Reported-by: c.f.a.johnson@rogers.com
8 Bug-Reference-ID: <aji8sb$1aa9bi$2@ID-136730.news.dfncis.de>
9 Bug-Reference-URL: http://mail.gnu.org/pipermail/bug-bash/2002-August/005074.html
13 A bug in the bash variable expansion code causes leading blanks in a
14 variable's value to be ignored when computing its length.
18 *** ./subst.c Mon Jun 24 07:59:45 2002
19 --- ./subst.c Sat Aug 17 17:28:46 2002
22 /* This performs word splitting and quoted null character removal on
25 ! #define issep(c) ((separators)[1] ? (member ((c), separators)) : (c) == (separators)[0])
27 ! #define issep(c) ((separators)[1] ? isifs(c) : (c) == (separators)[0])
32 /* This performs word splitting and quoted null character removal on
35 ! (((separators)[0]) ? ((separators)[1] ? isifs(c) \
36 ! : (c) == (separators)[0]) \