changeset 100880:c30d9af11159

Minor doc fix.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 04 Jan 2009 08:03:23 +0000
parents cca2b8bf75d1
children b6ac3685ddbf
files lisp/simple.el
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Sun Jan 04 07:55:05 2009 +0000
+++ b/lisp/simple.el	Sun Jan 04 08:03:23 2009 +0000
@@ -4298,12 +4298,14 @@
 
 (defun move-end-of-line (arg)
   "Move point to end of current line as displayed.
-\(If there's an image in the line, this disregards newlines
-which are part of the text that the image rests on.)
-
 With argument ARG not nil or 1, move forward ARG - 1 lines first.
 If point reaches the beginning or end of buffer, it stops there.
-To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
+
+To ignore the effects of the `intangible' text or overlay
+property, bind `inhibit-point-motion-hooks' to t.
+If there is an image in the current line, this function
+disregards newlines that are part of the text on which the image
+rests."
   (interactive "^p")
   (or arg (setq arg 1))
   (let (done)