summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2022-02-13 15:05:13 +0200
committerEli Zaretskii <eliz@gnu.org>2022-02-13 15:05:13 +0200
commit68b32732140606a1eddce82f50733c549a40900a (patch)
treeceb4ac3c962846926c3ea78765db23acc6302c2e
parent7a702cfd42da6231435f25578866f050e47d043b (diff)
downloademacs-68b32732140606a1eddce82f50733c549a40900a.tar.gz
emacs-68b32732140606a1eddce82f50733c549a40900a.tar.bz2
emacs-68b32732140606a1eddce82f50733c549a40900a.zip
; * lisp/simple.el (count-words): Doc fix.
-rw-r--r--lisp/simple.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index bd1138ac856..695871db505 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1486,11 +1486,11 @@ START and END."
If called interactively, START and END are normally the start and
end of the buffer; but if the region is active, START and END are
the start and end of the region. Print a message reporting the
-number of lines, words, and chars. If given a prefix, also
-include the data for the total (un-narrowed) buffer.
+number of lines, words, and chars. With prefix argument, also
+include the data for the entire (un-narrowed) buffer.
If called from Lisp, return the number of words between START and
-END, without printing any message. TOTAL is ignored when called
+END, without printing any message. TOTALS is ignored when called
from Lisp."
(interactive (list nil nil current-prefix-arg))
;; When called from Lisp, return the data.