summaryrefslogtreecommitdiff
path: root/lisp/add-log.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-05-10 05:53:16 +0000
committerRichard M. Stallman <rms@gnu.org>1998-05-10 05:53:16 +0000
commitf731e2ff424e6ef4870b8c417a225b906bf5509a (patch)
tree336c72d1fd055c35a056471a7b5135038a3e57fc /lisp/add-log.el
parent1cdb6e7c67365a04db3e8da50b7b3d8e91dbb477 (diff)
downloademacs-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.el2
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)))))