diff options
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 41c940f1cec..fc79da2a914 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el | |||
| @@ -226,7 +226,9 @@ The search is done in the source for library LIBRARY." | |||
| 226 | (regexp-symbol (cdr (assq type find-function-regexp-alist)))) | 226 | (regexp-symbol (cdr (assq type find-function-regexp-alist)))) |
| 227 | (with-current-buffer (find-file-noselect filename) | 227 | (with-current-buffer (find-file-noselect filename) |
| 228 | (let ((regexp (format (symbol-value regexp-symbol) | 228 | (let ((regexp (format (symbol-value regexp-symbol) |
| 229 | (regexp-quote (symbol-name symbol)))) | 229 | ;; Catch ` (backquote) macro. |
| 230 | (concat "\\\\?" | ||
| 231 | (regexp-quote (symbol-name symbol))))) | ||
| 230 | (case-fold-search)) | 232 | (case-fold-search)) |
| 231 | (with-syntax-table emacs-lisp-mode-syntax-table | 233 | (with-syntax-table emacs-lisp-mode-syntax-table |
| 232 | (goto-char (point-min)) | 234 | (goto-char (point-min)) |