diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-10 05:53:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-10 05:53:16 +0000 |
commit | f731e2ff424e6ef4870b8c417a225b906bf5509a (patch) | |
tree | 336c72d1fd055c35a056471a7b5135038a3e57fc /lisp/add-log.el | |
parent | 1cdb6e7c67365a04db3e8da50b7b3d8e91dbb477 (diff) | |
download | emacs-f731e2ff424e6ef4870b8c417a225b906bf5509a.tar.gz |
(add-log-current-defun): Fix previous change--skip
tab and newline also.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))))) |