diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2011-12-08 19:42:07 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2011-12-08 19:42:07 +0000 |
commit | e3182c18de8f84c2d7eb003f9c731ada5e9a591f (patch) | |
tree | 3ed57c8e61518c8ad98e93e4961b7b881237e0c6 /Src | |
parent | 22aede45f67161c6332e52c42e04df45a3e62164 (diff) | |
download | zsh-e3182c18de8f84c2d7eb003f9c731ada5e9a591f.tar.gz zsh-e3182c18de8f84c2d7eb003f9c731ada5e9a591f.tar.xz zsh-e3182c18de8f84c2d7eb003f9c731ada5e9a591f.zip |
29955++: IGNORE_CLOSE_BRACES option
Diffstat (limited to 'Src')
-rw-r--r-- | Src/lex.c | 3 | ||||
-rw-r--r-- | Src/options.c | 1 | ||||
-rw-r--r-- | Src/zsh.h | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/Src/lex.c b/Src/lex.c index 05f54f842..1cf3611c9 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -1857,7 +1857,8 @@ exalias(void) /* Then check for a reserved word */ if ((incmdpos || - (unset(IGNOREBRACES) && zshlextext[0] == '}' && !zshlextext[1])) && + (unset(IGNOREBRACES) && unset(IGNORECLOSEBRACES) && + zshlextext[0] == '}' && !zshlextext[1])) && (rw = (Reswd) reswdtab->getnode(reswdtab, zshlextext))) { tok = rw->token; if (tok == DINBRACK) diff --git a/Src/options.c b/Src/options.c index 00d552ad5..a70d4ff11 100644 --- a/Src/options.c +++ b/Src/options.c @@ -159,6 +159,7 @@ static struct optname optns[] = { {{NULL, "histverify", 0}, HISTVERIFY}, {{NULL, "hup", OPT_EMULATE|OPT_ZSH}, HUP}, {{NULL, "ignorebraces", OPT_EMULATE|OPT_SH}, IGNOREBRACES}, +{{NULL, "ignoreclosebraces", 0}, IGNORECLOSEBRACES}, {{NULL, "ignoreeof", 0}, IGNOREEOF}, {{NULL, "incappendhistory", 0}, INCAPPENDHISTORY}, {{NULL, "interactive", OPT_SPECIAL}, INTERACTIVE}, diff --git a/Src/zsh.h b/Src/zsh.h index e3141120f..dda2fa91a 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -2005,6 +2005,7 @@ enum { HISTVERIFY, HUP, IGNOREBRACES, + IGNORECLOSEBRACES, IGNOREEOF, INCAPPENDHISTORY, INTERACTIVE, |