diff options
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 660ad019a98..82f3ee2116d 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -145,7 +145,7 @@ If VARIABLE-P is nil, `find-function-regexp' is used, otherwise (goto-char (point-min)) (if (or (re-search-forward regexp nil t) (re-search-forward - (concat "^([^ ]+ +" + (concat "^([^ ]+\\(\\s-\\|\n\\)+" (regexp-quote (symbol-name symbol)) "\\>") nil t)) |