lexical.c, undo part of commit 360d1d7 ("Do not set Bit 8 in an ANSI char)

This commit is contained in:
h_vogt 2016-11-23 18:37:34 +01:00
parent 57dc441699
commit 2f486020be
1 changed files with 2 additions and 2 deletions

View File

@ -185,13 +185,13 @@ nloop:
if (c != EOF) /* Don't need to do this really. */
c = strip(c);
#ifdef QUOTE_CHAR
/* if '\' or '^', add following character to linebuf */
if ((c == '\\' && DIR_TERM != '\\') || (c == '\026') /* ^V */ ) {
c = quote(cp_readchar(&string, cp_inp_cur));
push(&linebuf, strip(c));
}
#endif
/* if reading from fcn backeval() for backquote subst. */
if ((c == '\n') && cp_bqflag)
c = ' ';