From: Karl Heuer Date: Mon, 15 May 1995 22:00:20 +0000 (+0000) Subject: (get-method-definition): Fix regexps. X-Git-Tag: emacs-19.34~4042 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f27f16ed4f889578a32405bf550a22efb3cb9fab;p=emacs.git (get-method-definition): Fix regexps. --- diff --git a/lisp/add-log.el b/lisp/add-log.el index 1b16295c0eb..57ff5228f8f 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -486,15 +486,15 @@ Has a preference of looking backwards." (defun get-method-definition () (let ((md "[")) (save-excursion - (if (re-search-backward "^@implementation \\(.*\\)$" nil t) + (if (re-search-backward "^@implementation\\s-*\\([A-Za-z_]*\\)" nil t) (get-method-definition-1 " "))) (save-excursion (cond - ((re-search-backward "^\\([-+]\\)[ \t\n\f\r]*\\(([^)]*)\\)?" nil t) + ((re-search-forward "^\\([-+]\\)[ \t\n\f\r]*\\(([^)]*)\\)?\\s-*" nil t) (get-method-definition-1 "") (while (not (looking-at "[{;]")) (looking-at - "\\([^ ;{:\t\n\f\r]*:?\\)\\(([^)]*)\\)?[^ ;{:\t\n\f\r]*[ \t\n\f\r]*") + "\\([A-Za-z_]*:?\\)\\s-*\\(([^)]*)\\)?[A-Za-z_]*[ \t\n\f\r]*") (get-method-definition-1 "")) (concat md "]"))))))