diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2012-11-15 21:08:15 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2012-11-15 21:08:15 +0000 |
commit | 7c56d771840a9f335b2e21290c8cbf714264bc66 (patch) | |
tree | 98907f1a578f3f13446d1ba91239088172807f01 /Src/hist.c | |
parent | 1446625072033fe1c53af7324a9245ef9cdcfad2 (diff) | |
download | zsh-7c56d771840a9f335b2e21290c8cbf714264bc66.tar.gz zsh-7c56d771840a9f335b2e21290c8cbf714264bc66.tar.xz zsh-7c56d771840a9f335b2e21290c8cbf714264bc66.zip |
30789: Add CONTINUE_ON_ERROR for old behaviour.
New behaviour is for scripts to exit on error instead of returning to top level and executing the next command.
Diffstat (limited to 'Src/hist.c')
-rw-r--r-- | Src/hist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/hist.c b/Src/hist.c index 0e63dca37..561e2acd5 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -573,7 +573,7 @@ histsubchar(int c) } else { herrflush(); unqueue_signals(); - zerr("Ambiguous history reference"); + zerr("ambiguous history reference"); return -1; } |