From 66bc608238cb338729a6aa12994217dcc7f87b35 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Wed, 1 Mar 2006 23:52:22 +0000 Subject: (Fregexp_quote): Do not precede a literal `]' with two backslashes to try to make clear that it has a literal meaning; it does not do that. (It could close a character alternative containing a backslash.) --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/search.c b/src/search.c index 04b58c78d3..b92812597d 100644 --- a/src/search.c +++ b/src/search.c @@ -3066,7 +3066,7 @@ DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0, for (; in != end; in++) { - if (*in == '[' || *in == ']' + if (*in == '[' || *in == '*' || *in == '.' || *in == '\\' || *in == '?' || *in == '+' || *in == '^' || *in == '$') -- cgit v1.2.3