1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-29 15:31:28 +02:00
This commit is contained in:
Sven Wischnowsky 2001-05-03 07:13:37 +00:00
parent db7f831871
commit 1e79a3424f
2 changed files with 8 additions and 1 deletions

@ -1,3 +1,7 @@
2001-05-03 Sven Wischnowsky <wischnow@zsh.org>
* 14214: Src/Zle/computil.c: ignore errors when removing quotes
2001-05-02 Bart Schaefer <schaefer@zsh.org>
* 14206: configure.in: Fix bug introduced by 14177; also, only

@ -1253,7 +1253,7 @@ ca_parse_line(Cadef d, int multi, int first)
Caopt ptr, wasopt = NULL, dopt;
struct castate state;
char *line, *pe, **argxor = NULL;
int cur, doff, argend, arglast;
int cur, doff, argend, arglast, ne;
Patprog endpat = NULL, napat = NULL;
LinkList sopts = NULL;
@ -1319,7 +1319,10 @@ ca_parse_line(Cadef d, int multi, int first)
/* remove quotes */
line = dupstring(line);
ne = noerrs;
noerrs = 2;
parse_subst_string(line);
noerrs = ne;
remnulargs(line);
untokenize(line);