diff options
| author | Chong Yidong | 2011-01-22 14:29:10 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-01-22 14:29:10 -0500 |
| commit | 66e0718be8d6a5ee63208b09ce6b37c2242860ca (patch) | |
| tree | a98debc8adaa27d0a5cdec5c1cf04bad282b5457 | |
| parent | bd2a4b24c4a591240862704737b5bc696ff67cbf (diff) | |
| download | emacs-66e0718be8d6a5ee63208b09ce6b37c2242860ca.tar.gz emacs-66e0718be8d6a5ee63208b09ce6b37c2242860ca.zip | |
* simple.el (line-move-visual): Doc fix (Bug#7594).
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b9f035f1ddc..d5c689e8fcc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-01-22 Chong Yidong <cyd@stupidchicken.com> | 1 | 2011-01-22 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * simple.el (line-move-visual): Doc fix (Bug#7594). | ||
| 4 | |||
| 3 | * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in | 5 | * emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in |
| 4 | "Case sensitive" menu item. | 6 | "Case sensitive" menu item. |
| 5 | 7 | ||
diff --git a/lisp/simple.el b/lisp/simple.el index 8785b1f72a9..4d3a46cb813 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4073,9 +4073,11 @@ Outline mode sets this." | |||
| 4073 | "When non-nil, `line-move' moves point by visual lines. | 4073 | "When non-nil, `line-move' moves point by visual lines. |
| 4074 | This movement is based on where the cursor is displayed on the | 4074 | This movement is based on where the cursor is displayed on the |
| 4075 | screen, instead of relying on buffer contents alone. It takes | 4075 | screen, instead of relying on buffer contents alone. It takes |
| 4076 | into account variable-width characters and line continuation." | 4076 | into account variable-width characters and line continuation. |
| 4077 | If nil, `line-move' moves point by logical lines." | ||
| 4077 | :type 'boolean | 4078 | :type 'boolean |
| 4078 | :group 'editing-basics) | 4079 | :group 'editing-basics |
| 4080 | :version "23.1") | ||
| 4079 | 4081 | ||
| 4080 | ;; Returns non-nil if partial move was done. | 4082 | ;; Returns non-nil if partial move was done. |
| 4081 | (defun line-move-partial (arg noerror to-end) | 4083 | (defun line-move-partial (arg noerror to-end) |