diff options
author | Glenn Morris <rgm@gnu.org> | 2018-04-20 13:35:20 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-04-20 13:35:20 -0400 |
commit | 3e233dd1c9a460e93974d9f13dfe564caed5ab56 (patch) | |
tree | 6554c66e20621cdf7139bb4251a62daa1a9c27f2 /lisp/replace.el | |
parent | 15a62a60d12eef50c21e2271acde2b47b397a093 (diff) | |
download | emacs-3e233dd1c9a460e93974d9f13dfe564caed5ab56.tar.gz |
* lisp/replace.el (query-replace-descr): Silence compiler.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r-- | lisp/replace.el | 5 |
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'." |