aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-11-21 00:32:46 +0000
committerJuanma Barranquero2007-11-21 00:32:46 +0000
commit33127d1a78f2a37d68ffa09642df2f38d78e95b1 (patch)
treed624a8e8747dfcefe511707877b73e6cd494ff3a
parent37dddac63c5ce29a85c74387c0f959b960e05c9d (diff)
downloademacs-33127d1a78f2a37d68ffa09642df2f38d78e95b1.tar.gz
emacs-33127d1a78f2a37d68ffa09642df2f38d78e95b1.zip
(forward-sentence): Doc fix.
Reported by Drew Adams <drew.adams@oracle.com>.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/paragraphs.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f2322ae4d24..b050d2a5faa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-11-21 Juanma Barranquero <lekktu@gmail.com>
2
3 * textmodes/paragraphs.el (forward-sentence): Doc fix.
4 Reported by Drew Adams <drew.adams@oracle.com>.
5
12007-11-20 Glenn Morris <rgm@gnu.org> 62007-11-20 Glenn Morris <rgm@gnu.org>
2 7
3 * emacs-lisp/byte-run.el (declare-function): Define as a no-op, 8 * emacs-lisp/byte-run.el (declare-function): Define as a no-op,
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."
440 (end-of-paragraph-text)))))) 440 (end-of-paragraph-text))))))
441 441
442(defun forward-sentence (&optional arg) 442(defun forward-sentence (&optional arg)
443 "Move forward to next `sentence-end'. With argument, repeat. 443 "Move forward to next end of sentence. With argument, repeat.
444With negative argument, move backward repeatedly to `sentence-beginning'. 444With negative argument, move backward repeatedly to start of sentence.
445 445
446The variable `sentence-end' is a regular expression that matches ends of 446The variable `sentence-end' is a regular expression that matches ends of
447sentences. Also, every paragraph boundary terminates sentences as well." 447sentences. Also, every paragraph boundary terminates sentences as well."