From: Richard M. Stallman Date: Sun, 10 May 1998 05:53:16 +0000 (+0000) Subject: (add-log-current-defun): Fix previous change--skip X-Git-Tag: emacs-20.3~1061 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f731e2ff424e6ef4870b8c417a225b906bf5509a;p=emacs.git (add-log-current-defun): Fix previous change--skip tab and newline also. --- diff --git a/lisp/add-log.el b/lisp/add-log.el index 6d762cec01c..bde35a63b43 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -503,7 +503,7 @@ Has a preference of looking backwards." (forward-sexp 1) ;; The second element is usually a symbol being defined. ;; If it is not, use the first symbol in it. - (skip-chars-forward " '(") + (skip-chars-forward " \tx\n'(") (buffer-substring (point) (progn (forward-sexp 1) (point)))))