aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2000-09-11 10:48:34 +0000
committerMiles Bader2000-09-11 10:48:34 +0000
commit974e1e5b2a31b2648a381d7a2bc5bf9a3204f401 (patch)
tree822b6d8cc17d9f90e9562efc3cc20d90ce3c3252 /src
parent6b124390359d516800bc41ba5a9a66b1dd1e5bb9 (diff)
downloademacs-974e1e5b2a31b2648a381d7a2bc5bf9a3204f401.tar.gz
emacs-974e1e5b2a31b2648a381d7a2bc5bf9a3204f401.zip
(Fbuffer_string): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/editfns.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3d00ebfeba2..18478bbda9d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-09-11 Miles Bader <miles@gnu.org>
2
3 * editfns.c (Fbuffer_string): Doc fix.
4
12000-09-10 Gerd Moellmann <gerd@gnu.org> 52000-09-10 Gerd Moellmann <gerd@gnu.org>
2 6
3 * ralloc.c (mmap_enlarge): Don't return 0 if successful. 7 * ralloc.c (mmap_enlarge): Don't return 0 if successful.
diff --git a/src/editfns.c b/src/editfns.c
index 7b5264385a2..861d61cc63f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2158,8 +2158,7 @@ they can be in either order.")
2158DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0, 2158DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
2159 "Return the contents of the current buffer as a string.\n\ 2159 "Return the contents of the current buffer as a string.\n\
2160If narrowing is in effect, this function returns only the visible part\n\ 2160If narrowing is in effect, this function returns only the visible part\n\
2161of the buffer. If in a mini-buffer, don't include the prompt in the\n\ 2161of the buffer.")
2162string returned.")
2163 () 2162 ()
2164{ 2163{
2165 return make_buffer_string (BEGV, ZV, 1); 2164 return make_buffer_string (BEGV, ZV, 1);