]> git.eshelyaron.com Git - emacs.git/commitdiff
Strip text properties from the default string
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 9 Mar 2021 02:06:01 +0000 (04:06 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 9 Mar 2021 02:06:01 +0000 (04:06 +0200)
* lisp/progmodes/project.el (project--read-regexp):
Strip text properties from the default string (bug#47012).

lisp/progmodes/project.el

index d59da2496a7cd6776a6bb95caac68b5ecc1af84b..67e827eea43b3c3b1a14e8b468e157f467ece0b8 100644 (file)
@@ -775,7 +775,7 @@ pattern to search for."
     xrefs))
 
 (defun project--read-regexp ()
-  (let ((sym (thing-at-point 'symbol)))
+  (let ((sym (thing-at-point 'symbol t)))
     (read-regexp "Find regexp" (and sym (regexp-quote sym)))))
 
 ;;;###autoload