aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);