emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/emacs-lisp lisp.el


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp/emacs-lisp lisp.el
Date: Thu, 19 Feb 2009 17:31:51 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/02/19 17:31:51

Modified files:
        lisp/emacs-lisp: lisp.el 

Log message:
        (beginning-of-defun): Fix harmless paren typo.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/emacs-lisp/lisp.el?cvsroot=emacs&r1=1.99&r2=1.100

Patches:
Index: lisp.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emacs-lisp/lisp.el,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -b -r1.99 -r1.100
--- lisp.el     19 Feb 2009 16:55:26 -0000      1.99
+++ lisp.el     19 Feb 2009 17:31:51 -0000      1.100
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]