summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2011-01-22 14:29:10 -0500
committerChong Yidong <cyd@stupidchicken.com>2011-01-22 14:29:10 -0500
commit66e0718be8d6a5ee63208b09ce6b37c2242860ca (patch)
treea98debc8adaa27d0a5cdec5c1cf04bad282b5457
parentbd2a4b24c4a591240862704737b5bc696ff67cbf (diff)
downloademacs-66e0718be8d6a5ee63208b09ce6b37c2242860ca.tar.gz
* 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 @@
2011-01-22 Chong Yidong <cyd@stupidchicken.com>
+ * simple.el (line-move-visual): Doc fix (Bug#7594).
+
* emacs-lisp/re-builder.el (reb-mode-map): Fix logic error in
"Case sensitive" menu item.
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."
"When non-nil, `line-move' moves point by visual lines.
This movement is based on where the cursor is displayed on the
screen, instead of relying on buffer contents alone. It takes
-into account variable-width characters and line continuation."
+into account variable-width characters and line continuation.
+If nil, `line-move' moves point by logical lines."
:type 'boolean
- :group 'editing-basics)
+ :group 'editing-basics
+ :version "23.1")
;; Returns non-nil if partial move was done.
(defun line-move-partial (arg noerror to-end)