diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-02-19 17:31:51 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-02-19 17:31:51 +0000 |
commit | 4114bc49750e64e2b664300fa11912a97910b287 (patch) | |
tree | 05f78f5ab26a8382b14f37e0c46e6d4db0aa0dc5 /lisp/emacs-lisp/lisp.el | |
parent | 083d6104ef0b970517e1d4e003a849947736c8a3 (diff) | |
download | emacs-4114bc49750e64e2b664300fa11912a97910b287.tar.gz |
(beginning-of-defun): Fix harmless paren typo.
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 79fb8377f23..f11c99100a1 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -259,7 +259,8 @@ is called as a function to find the defun's beginning." "\\(?:" defun-prompt-regexp "\\)\\s(") "^\\s(") nil 'move arg) - (progn (goto-char (1- (match-end 0)))) t)) + (progn (goto-char (1- (match-end 0))) + t))) ;; If open-paren-in-column-0-is-defun-start and defun-prompt-regexp ;; are both nil, column 0 has no significance - so scan forward |