Mercurial > emacs
changeset 102124:75c910c62eaa
(beginning-of-defun): Fix harmless paren typo.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 19 Feb 2009 17:31:51 +0000 |
parents | a6789a7d6164 |
children | 057f38650810 |
files | lisp/emacs-lisp/lisp.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el Thu Feb 19 17:15:58 2009 +0000 +++ b/lisp/emacs-lisp/lisp.el Thu Feb 19 17:31:51 2009 +0000 @@ -259,7 +259,8 @@ "\\(?:" 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