emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100036: simple.el (line-move-visu


From: David Reitter
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100036: simple.el (line-move-visual): Do not truncate goal column to integer size.
Date: Sun, 12 Sep 2010 13:46:57 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100036
committer: David Reitter <address@hidden>
branch nick: emacs-23
timestamp: Sun 2010-09-12 13:46:57 -0400
message:
  simple.el (line-move-visual): Do not truncate goal column to integer size.
  (Bug#7020)
modified:
  lisp/ChangeLog
  lisp/simple.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-09-11 18:23:45 +0000
+++ b/lisp/ChangeLog    2010-09-12 17:46:57 +0000
@@ -1,3 +1,8 @@
+2010-09-12  David Reitter  <address@hidden>
+
+       * simple.el (line-move-visual): Do not truncate goal column to
+       integer size.  (Bug#7020)
+
 2010-09-11  Stefan Monnier  <address@hidden>
 
        * repeat.el (repeat): Allow repeating when the last event is a click.

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2010-08-26 15:09:45 +0000
+++ b/lisp/simple.el    2010-09-12 17:46:57 +0000
@@ -4193,7 +4193,7 @@
     (or (and (= (vertical-motion
                 (cons (or goal-column
                           (if (consp temporary-goal-column)
-                              (truncate (car temporary-goal-column))
+                              (car temporary-goal-column)
                             temporary-goal-column))
                       arg))
                arg)


reply via email to

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