# HG changeset patch # User Markus Rost # Date 1021230337 0 # Node ID 77ff99d0f7ff6188f90fc559a02c7ebd6dfb702e # Parent ff98f1178f8b4576f9d1f3a0730805b9ee16616b (find-function-search-for-symbol): Handle more whitespace/newline combinations in symbol definitions. diff -r ff98f1178f8b -r 77ff99d0f7ff lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Sun May 12 17:30:42 2002 +0000 +++ b/lisp/emacs-lisp/find-func.el Sun May 12 19:05:37 2002 +0000 @@ -145,7 +145,7 @@ (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))