]> git.eshelyaron.com Git - emacs.git/commitdiff
Faster grep pattern for identifiers
authorMattias Engdegård <mattiase@acm.org>
Wed, 15 Sep 2021 11:47:15 +0000 (13:47 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 15 Sep 2021 11:54:24 +0000 (13:54 +0200)
* lisp/cedet/semantic/symref/grep.el (semantic-symref-perform-search):
Use the `-w` flag instead of wrapping the pattern in regexps that make
matching much slower.  This speeds up `xref-find-references` by about
3× on macOS.

lisp/cedet/semantic/symref/grep.el

index cee54d78185801207352b0e0276a7df1eae07bcd..e06a3c1007865ae6775a4c5b0109a48038d82989 100644 (file)
@@ -150,15 +150,8 @@ This shell should support pipe redirect syntax."
                            "-l ")
                           ((eq (oref tool searchtype) 'regexp)
                            "-nE ")
-                          (t "-n ")))
-         (greppat (cond ((eq (oref tool searchtype) 'regexp)
-                         (oref tool searchfor))
-                        (t
-                         ;; Can't use the word boundaries: Grep
-                         ;; doesn't always agree with the language
-                         ;; syntax on those.
-                         (format "\\(^\\|\\W\\)%s\\(\\W\\|$\\)"
-                                 (oref tool searchfor)))))
+                          (t "-nw ")))
+         (greppat (oref tool searchfor))
         ;; Misc
         (b (get-buffer-create "*Semantic SymRef*"))
         (ans nil)