aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorChong Yidong2009-07-31 01:34:26 +0000
committerChong Yidong2009-07-31 01:34:26 +0000
commit54b99340fdedcaabf52feaca573dc3020292dfa7 (patch)
treeea7feac0721623a4f90356f5dc5934de8c5bd154 /lisp
parent35edc6c64f5ab39d62052ca377e24cecea135f21 (diff)
downloademacs-54b99340fdedcaabf52feaca573dc3020292dfa7.tar.gz
emacs-54b99340fdedcaabf52feaca573dc3020292dfa7.zip
* simple.el (line-move-finish): Pass whole number to
line-move-to-column.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e210a1697bc..93201ac101c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-07-31 Chong Yidong <cyd@stupidchicken.com>
2
3 * simple.el (line-move-finish): Pass whole number to
4 line-move-to-column.
5
12009-07-30 Jay Belanger <jay.p.belanger@gmail.com> 62009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
2 7
3 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt. 8 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
diff --git a/lisp/simple.el b/lisp/simple.el
index e9deafbfb6e..3c779269f4d 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4285,7 +4285,7 @@ into account variable-width characters and line continuation."
4285 (point)))) 4285 (point))))
4286 4286
4287 ;; Move to the desired column. 4287 ;; Move to the desired column.
4288 (line-move-to-column column) 4288 (line-move-to-column (truncate column))
4289 4289
4290 ;; Corner case: suppose we start out in a field boundary in 4290 ;; Corner case: suppose we start out in a field boundary in
4291 ;; the middle of a continued line. When we get to 4291 ;; the middle of a continued line. When we get to