diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
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 @@ | |||
| 1 | 2009-07-31 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * simple.el (line-move-finish): Pass whole number to | ||
| 4 | line-move-to-column. | ||
| 5 | |||
| 1 | 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com> | 6 | 2009-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 |