mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 15:10:37 -08:00
* simple.el (line-move-finish): Pass whole number to
line-move-to-column.
This commit is contained in:
parent
35edc6c64f
commit
54b99340fd
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-07-31 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* simple.el (line-move-finish): Pass whole number to
|
||||
line-move-to-column.
|
||||
|
||||
2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
* calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
|
||||
|
|
|
|||
|
|
@ -4285,7 +4285,7 @@ into account variable-width characters and line continuation."
|
|||
(point))))
|
||||
|
||||
;; Move to the desired column.
|
||||
(line-move-to-column column)
|
||||
(line-move-to-column (truncate column))
|
||||
|
||||
;; Corner case: suppose we start out in a field boundary in
|
||||
;; the middle of a continued line. When we get to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue