From 4114bc49750e64e2b664300fa11912a97910b287 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 19 Feb 2009 17:31:51 +0000 Subject: [PATCH] (beginning-of-defun): Fix harmless paren typo. --- lisp/emacs-lisp/lisp.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5