aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/replace.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 2f8fe86860c..4275aef8d87 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1283,8 +1283,8 @@ N (match-string N) (where N is a string of digits)
1283# replace-count 1283# replace-count
1284 1284
1285Note that these symbols must be preceeded by a backslash in order to 1285Note that these symbols must be preceeded by a backslash in order to
1286type them." 1286type them using Lisp syntax."
1287 (while n 1287 (while (consp n)
1288 (cond 1288 (cond
1289 ((consp (car n)) 1289 ((consp (car n))
1290 (replace-match-string-symbols (car n))) ;Process sub-list 1290 (replace-match-string-symbols (car n))) ;Process sub-list