diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-11-21 00:32:46 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-11-21 00:32:46 +0000 |
commit | 33127d1a78f2a37d68ffa09642df2f38d78e95b1 (patch) | |
tree | d624a8e8747dfcefe511707877b73e6cd494ff3a /lisp/textmodes/paragraphs.el | |
parent | 37dddac63c5ce29a85c74387c0f959b960e05c9d (diff) | |
download | emacs-33127d1a78f2a37d68ffa09642df2f38d78e95b1.tar.gz emacs-33127d1a78f2a37d68ffa09642df2f38d78e95b1.tar.bz2 emacs-33127d1a78f2a37d68ffa09642df2f38d78e95b1.zip |
(forward-sentence): Doc fix.
Reported by Drew Adams <drew.adams@oracle.com>.
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 201eeebb623..06ebeea9fa0 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -440,8 +440,8 @@ negative arg -N means kill forward to Nth end of paragraph." (end-of-paragraph-text)))))) (defun forward-sentence (&optional arg) - "Move forward to next `sentence-end'. With argument, repeat. -With negative argument, move backward repeatedly to `sentence-beginning'. + "Move forward to next end of sentence. With argument, repeat. +With negative argument, move backward repeatedly to start of sentence. The variable `sentence-end' is a regular expression that matches ends of sentences. Also, every paragraph boundary terminates sentences as well." |