diff options
| author | Gerd Moellmann <gerd@gnu.org> | 2001-11-16 10:48:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 2001-11-16 10:48:38 +0000 |
| commit | cbdf8831473f68aee326cc3efd2cd942fcd52964 (patch) | |
| tree | 5ea552f4a2247cf273ca6dae69a1abf0576542c0 /lib-src | |
| parent | 1699c6afe504a61bddc0da89b69d7c27e2cb1949 (diff) | |
(matching_regexp): Escape '\\'.
Diffstat (limited to 'lib-src')
| -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 () { *--s = *--t; - if (*s == '"') + if (*s == '"' || *s == '\\') *--s = '\\'; } |
