aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-01-04 08:03:23 +0000
committerChong Yidong2009-01-04 08:03:23 +0000
commitfdb77e6ff4ab8c60e23467b76d9d749aa4a7e981 (patch)
tree96855b0d4fd879756dee6154a5463c30890aab26
parent330ba5fdfd8051079ce9eca1ee3ba7707cd8b3f4 (diff)
downloademacs-fdb77e6ff4ab8c60e23467b76d9d749aa4a7e981.tar.gz
emacs-fdb77e6ff4ab8c60e23467b76d9d749aa4a7e981.zip
Minor doc fix.
-rw-r--r--lisp/simple.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 2368dce5b4b..4f4c611df23 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4298,12 +4298,14 @@ and `current-column' to be able to ignore invisible text."
4298 4298
4299(defun move-end-of-line (arg) 4299(defun move-end-of-line (arg)
4300 "Move point to end of current line as displayed. 4300 "Move point to end of current line as displayed.
4301\(If there's an image in the line, this disregards newlines
4302which are part of the text that the image rests on.)
4303
4304With argument ARG not nil or 1, move forward ARG - 1 lines first. 4301With argument ARG not nil or 1, move forward ARG - 1 lines first.
4305If point reaches the beginning or end of buffer, it stops there. 4302If point reaches the beginning or end of buffer, it stops there.
4306To ignore intangibility, bind `inhibit-point-motion-hooks' to t." 4303
4304To ignore the effects of the `intangible' text or overlay
4305property, bind `inhibit-point-motion-hooks' to t.
4306If there is an image in the current line, this function
4307disregards newlines that are part of the text on which the image
4308rests."
4307 (interactive "^p") 4309 (interactive "^p")
4308 (or arg (setq arg 1)) 4310 (or arg (setq arg 1))
4309 (let (done) 4311 (let (done)