]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/replace.el (query-replace-descr): Silence compiler.
authorGlenn Morris <rgm@gnu.org>
Fri, 20 Apr 2018 17:35:20 +0000 (13:35 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 20 Apr 2018 17:35:20 +0000 (13:35 -0400)
lisp/replace.el

index 0e723390347ab6c2a0c1478f9a57e07421d24542..d5d34f652abcf13e962d052c196a264fd2b35036 100644 (file)
@@ -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'."