diff options
author | slioch <slioch@eng-140.vyatta.com> | 2008-08-28 11:30:29 -0700 |
---|---|---|
committer | slioch <slioch@eng-140.vyatta.com> | 2008-08-28 11:30:29 -0700 |
commit | d65bc46a92e6433e59736c13f99ef33824341f8b (patch) | |
tree | eff7cecd70bd3b962b02dd408476ff7287d11145 | |
parent | 8885d068b5830240895645ca6432f53eacb51d71 (diff) | |
download | vyatta-bash-d65bc46a92e6433e59736c13f99ef33824341f8b.tar.gz vyatta-bash-d65bc46a92e6433e59736c13f99ef33824341f8b.zip |
remove ! and $ from vbash processing as these are handled by command scripts.
-rw-r--r-- | parse.y | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -2001,9 +2001,7 @@ shell_getc (remove_quoted_newline) c == '>' || c == '<' || c == '|' || - c == '!' || - c == '`' || - c == '$') && + c == '`') && shell_input_line[i-1] != '\\') { if (no_escape == 0) { shell_input_line[i++] = '\\'; |