diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2000-05-27 08:32:58 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2000-05-27 08:32:58 +0000 |
commit | 47532f255ef58d9e0e5bd6c909b3a7008e35ee43 (patch) | |
tree | 17b92f13e2d0702a681957088ebfdb03458caa10 /Src/init.c | |
parent | 17aadf0338940aae841e67b50ae412687d6cc9ec (diff) | |
download | zsh-47532f255ef58d9e0e5bd6c909b3a7008e35ee43.tar.gz zsh-47532f255ef58d9e0e5bd6c909b3a7008e35ee43.tar.xz zsh-47532f255ef58d9e0e5bd6c909b3a7008e35ee43.zip |
11606: Propagate parse errors out of parse_list() and parse_event(), and
test that it worked.
Diffstat (limited to 'Src/init.c')
-rw-r--r-- | Src/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/init.c b/Src/init.c index 131b50606..5f0c98ca0 100644 --- a/Src/init.c +++ b/Src/init.c @@ -944,7 +944,7 @@ source(char *s) execode(prog, 1, 0); popheap(); } else - loop(0, 0); /* loop through the file to be sourced */ + loop(0, 0); /* loop through the file to be sourced */ sourcelevel--; /* restore the current shell state */ |