1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

(get_next_token): Fix indefinite loop bug scanning

escaped quotes.
This commit is contained in:
Andrew Innes 2001-03-18 16:54:35 +00:00
parent 4986c2c6c8
commit 2afff93ade

View File

@ -158,6 +158,7 @@ get_next_token (char * buf, char ** pSrc)
if (p[0] == escape_char && escape_char != '"')
{
escape_char_run++;
p++;
continue;
}
else if (p[0] == '"')