about summary refs log tree commit diff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
Xu dqvarnest is only used to determine whether CENDQUOTE should terminate the double-quote syntax. Since CENDQUOTE can never occur while arinest is set, we don't need to take arinest into account for dqvarnest. 2007-09-24[PARSER] Remove superfluous arinest test in CENDQUOTEHerbert Xu If arinest is set then the syntax must be ARISYNTAX. As such CENDQUOTE can never occur while arinest is set so we don't need to test for it. 2007-09-24[EXPAND] Perform tilde expansion in all parameter expansion wordsHerbert Xu Previously tilde expansion was not carried out for =?#% expansion words. This is contrary to the POSIX specification. Test case: a=~root:~root echo ${a#~root} Old result: /root:/root New result: :/root 2007-09-24[EXPAND] Do not quote back slashes in parameter expansions outside quotes