]> git.eshelyaron.com Git - emacs.git/commitdiff
(matching_regexp): Escape '\\'.
authorGerd Moellmann <gerd@gnu.org>
Fri, 16 Nov 2001 10:48:38 +0000 (10:48 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 16 Nov 2001 10:48:38 +0000 (10:48 +0000)
lib-src/ebrowse.c

index 34b02e3df4f67329576b53cc5a2da55c5bdb7e6a..69bd057a59c60b12aedb7ca1245d93dc55d44df3 100644 (file)
@@ -2050,7 +2050,7 @@ matching_regexp ()
     {
       *--s = *--t;
 
-      if (*s == '"')
+      if (*s == '"' || *s == '\\')
         *--s = '\\';
     }