emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r102361: * lisp/simple.el (open-line)


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102361: * lisp/simple.el (open-line): `newline' may strip trailing space.
Date: Fri, 12 Nov 2010 08:32:02 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102361
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2010-11-12 08:32:02 -0500
message:
  * lisp/simple.el (open-line): `newline' may strip trailing space.
modified:
  lisp/ChangeLog
  lisp/simple.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-11-12 13:28:17 +0000
+++ b/lisp/ChangeLog    2010-11-12 13:32:02 +0000
@@ -1,3 +1,7 @@
+2010-11-12  Stefan Monnier  <address@hidden>
+
+       * simple.el (open-line): `newline' may strip trailing space.
+
 2010-11-12  Kevin Ryde  <address@hidden>
 
        * international/mule-cmds.el (princ-list): Use mapc.

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2010-11-09 05:33:07 +0000
+++ b/lisp/simple.el    2010-11-12 13:32:02 +0000
@@ -512,7 +512,7 @@
   (interactive "*p")
   (let* ((do-fill-prefix (and fill-prefix (bolp)))
         (do-left-margin (and (bolp) (> (current-left-margin) 0)))
-        (loc (point))
+        (loc (point-marker))
         ;; Don't expand an abbrev before point.
         (abbrev-mode nil))
     (newline n)


reply via email to

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