From: Chong Yidong Date: Sat, 22 Jan 2011 19:29:10 +0000 (-0500) Subject: * simple.el (line-move-visual): Doc fix (Bug#7594). X-Git-Tag: emacs-pretest-23.2.93~44 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66e0718be8d6a5ee63208b09ce6b37c2242860ca;p=emacs.git * simple.el (line-move-visual): Doc fix (Bug#7594). --- 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 + * 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)