summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-04-20 13:35:20 -0400
committerGlenn Morris <rgm@gnu.org>2018-04-20 13:35:20 -0400
commit3e233dd1c9a460e93974d9f13dfe564caed5ab56 (patch)
tree6554c66e20621cdf7139bb4251a62daa1a9c27f2 /lisp/replace.el
parent15a62a60d12eef50c21e2271acde2b47b397a093 (diff)
downloademacs-3e233dd1c9a460e93974d9f13dfe564caed5ab56.tar.gz
* lisp/replace.el (query-replace-descr): Silence compiler.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 0e723390347..d5d34f652ab 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -148,7 +148,7 @@ See `replace-regexp' and `query-replace-regexp-eval'.")
(defun query-replace-descr (string)
(setq string (copy-sequence string))
- (dotimes (i (length string) string)
+ (dotimes (i (length string))
(let ((c (aref string i)))
(cond
((< c ?\s) (add-text-properties
@@ -158,7 +158,8 @@ See `replace-regexp' and `query-replace-regexp-eval'.")
((= c ?\^?) (add-text-properties
i (1+ i)
`(display ,(propertize "^?" 'face 'escape-glyph))
- string))))))
+ string)))))
+ string)
(defun query-replace--split-string (string)
"Split string STRING at a substring with property `separator'."