(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
((= 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'."