# HG changeset patch # User Stefan Monnier # Date 1235064711 0 # Node ID 75c910c62eaa3c709f88c4508230e75782e0ef5f # Parent a6789a7d6164f918d3c793a38fbad47a8832d373 (beginning-of-defun): Fix harmless paren typo. diff -r a6789a7d6164 -r 75c910c62eaa lisp/emacs-lisp/lisp.el --- 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