aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2011-01-22 14:29:10 -0500
committerChong Yidong2011-01-22 14:29:10 -0500
commit66e0718be8d6a5ee63208b09ce6b37c2242860ca (patch)
treea98debc8adaa27d0a5cdec5c1cf04bad282b5457
parentbd2a4b24c4a591240862704737b5bc696ff67cbf (diff)
downloademacs-66e0718be8d6a5ee63208b09ce6b37c2242860ca.tar.gz
emacs-66e0718be8d6a5ee63208b09ce6b37c2242860ca.zip
* simple.el (line-move-visual): Doc fix (Bug#7594).
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/simple.el6
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 @@
12011-01-22 Chong Yidong <cyd@stupidchicken.com> 12011-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.
4074This movement is based on where the cursor is displayed on the 4074This movement is based on where the cursor is displayed on the
4075screen, instead of relying on buffer contents alone. It takes 4075screen, instead of relying on buffer contents alone. It takes
4076into account variable-width characters and line continuation." 4076into account variable-width characters and line continuation.
4077If 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)