aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorLuc Teirlinck <[email protected]>2006-03-01 23:52:22 +0000
committerLuc Teirlinck <[email protected]>2006-03-01 23:52:22 +0000
commit66bc608238cb338729a6aa12994217dcc7f87b35 (patch)
treea09c9944933d7cf5af889585ff0256846da9af56 /src/search.c
parent0bbe0c9ca4c97858b0dcdda6bcef7365a7431ac5 (diff)
(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.)
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c2
1 files changed, 1 insertions, 1 deletions
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 == '$')