diff options
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 |