From: Gerd Moellmann Date: Fri, 16 Nov 2001 10:48:38 +0000 (+0000) Subject: (matching_regexp): Escape '\\'. X-Git-Tag: ttn-vms-21-2-B4~18518 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cbdf8831473f68aee326cc3efd2cd942fcd52964;p=emacs.git (matching_regexp): Escape '\\'. --- diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 34b02e3df4f..69bd057a59c 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -2050,7 +2050,7 @@ matching_regexp () { *--s = *--t; - if (*s == '"') + if (*s == '"' || *s == '\\') *--s = '\\'; }