]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_next_token): Fix indefinite loop bug scanning
authorAndrew Innes <andrewi@gnu.org>
Sun, 18 Mar 2001 16:54:35 +0000 (16:54 +0000)
committerAndrew Innes <andrewi@gnu.org>
Sun, 18 Mar 2001 16:54:35 +0000 (16:54 +0000)
escaped quotes.

nt/cmdproxy.c

index 267e00acc98b17c256394cebb14b02c965c2f7eb..09a3c672e797ffb60a9ef4857a901caf050a6755 100644 (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] == '"')