diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-13 23:02:25 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-13 23:02:25 +0000 |
commit | 19c1bbc5313811e213cff812b2f182e7686d0485 (patch) | |
tree | 0151a0facfaed0b60e1a9b234fb92d3fe89e1e51 | |
parent | fedb8e79e5327cce5924575ab7624a6ea6135726 (diff) | |
download | emacs-19c1bbc5313811e213cff812b2f182e7686d0485.tar.gz |
(Fbuffer_string): Doc clarification.
-rw-r--r-- | src/editfns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 30357d59d85..29eef9a707c 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1183,7 +1183,9 @@ they can be in either order.") } DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0, - "Return the contents of the current buffer as a string.") + "Return the contents of the current buffer as a string.\n\ +If narrowing is in effect, this function returns only the visible part\n\ +of the buffer.") () { return make_buffer_string (BEGV, ZV); |