aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2020-02-13 22:43:03 +0100
committerPhilipp Stephani2020-02-13 22:43:03 +0100
commit75a9eee8b80099670cd78273d0df69115422daa4 (patch)
tree98aebc21dc1e03544b52a7cdfbde50b764c74f10 /src
parent4d8d25d6417d3ac64627a44571cf63feb7abe44f (diff)
downloademacs-75a9eee8b80099670cd78273d0df69115422daa4.tar.gz
emacs-75a9eee8b80099670cd78273d0df69115422daa4.zip
; * src/editfns.c (Fbuffer_size): Tiny clarification.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 05ad3925813..ddf190b1752 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -863,7 +863,7 @@ instead.
863This does not take narrowing into account; to count the number of 863This does not take narrowing into account; to count the number of
864characters in the accessible portion of the current buffer, use 864characters in the accessible portion of the current buffer, use
865`(- (point-max) (point-min))', and to count the number of characters 865`(- (point-max) (point-min))', and to count the number of characters
866in some other BUFFER, use 866in the accessible portion of some other BUFFER, use
867`(with-current-buffer BUFFER (- (point-max) (point-min)))'. */) 867`(with-current-buffer BUFFER (- (point-max) (point-min)))'. */)
868 (Lisp_Object buffer) 868 (Lisp_Object buffer)
869{ 869{