diff options
| author | Gerd Moellmann | 2001-11-16 10:48:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-11-16 10:48:38 +0000 |
| commit | cbdf8831473f68aee326cc3efd2cd942fcd52964 (patch) | |
| tree | 5ea552f4a2247cf273ca6dae69a1abf0576542c0 /lib-src/ebrowse.c | |
| parent | 1699c6afe504a61bddc0da89b69d7c27e2cb1949 (diff) | |
| download | emacs-cbdf8831473f68aee326cc3efd2cd942fcd52964.tar.gz emacs-cbdf8831473f68aee326cc3efd2cd942fcd52964.zip | |
(matching_regexp): Escape '\\'.
Diffstat (limited to 'lib-src/ebrowse.c')
| -rw-r--r-- | lib-src/ebrowse.c | 2 |
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 | ||