aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGerd Moellmann2001-11-16 10:48:38 +0000
committerGerd Moellmann2001-11-16 10:48:38 +0000
commitcbdf8831473f68aee326cc3efd2cd942fcd52964 (patch)
tree5ea552f4a2247cf273ca6dae69a1abf0576542c0 /lib-src
parent1699c6afe504a61bddc0da89b69d7c27e2cb1949 (diff)
downloademacs-cbdf8831473f68aee326cc3efd2cd942fcd52964.tar.gz
emacs-cbdf8831473f68aee326cc3efd2cd942fcd52964.zip
(matching_regexp): Escape '\\'.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ebrowse.c2
1 files changed, 1 insertions, 1 deletions
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 ()
2050 { 2050 {
2051 *--s = *--t; 2051 *--s = *--t;
2052 2052
2053 if (*s == '"') 2053 if (*s == '"' || *s == '\\')
2054 *--s = '\\'; 2054 *--s = '\\';
2055 } 2055 }
2056 2056