* simple.el (line-move-visual): Doc fix (Bug#7594).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 22 Jan 2011 19:29:10 +0000 (14:29 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 22 Jan 2011 19:29:10 +0000 (14:29 -0500)
lisp/ChangeLog
lisp/simple.el

index b9f035f..d5c689e 100644 (file)
@@ -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.
 
index 8785b1f..4d3a46c 100644 (file)
@@ -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)