Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: pws-22: Tiny stylistic tweak to lex.c
- X-seq: zsh-workers 6646
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: PATCH: pws-22: Tiny stylistic tweak to lex.c
- Date: Tue, 15 Jun 1999 17:01:45 +0000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
This change got made back before 3.0.5 sometime and was never reflected in
3.1.x. It's code-cleanliness only.
Index: Src/lex.c
===================================================================
@@ -1150,7 +1150,7 @@
cmdpush(CS_BQUOTE);
SETPARBEGIN
inquote = 0;
- while ((c = hgetc()) != '`' && !lexstop)
+ while ((c = hgetc()) != '`' && !lexstop) {
if (c == '\\') {
c = hgetc();
if (c != '\n') {
@@ -1171,6 +1171,7 @@
ALLOWHIST
}
}
+ }
if (inquote)
ALLOWHIST
cmdpop();
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author