From: Miles Bader Date: Mon, 11 Sep 2000 10:48:34 +0000 (+0000) Subject: (Fbuffer_string): Doc fix. X-Git-Tag: emacs-pretest-21.0.90~1675 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=974e1e5b2a31b2648a381d7a2bc5bf9a3204f401;p=emacs.git (Fbuffer_string): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 3d00ebfeba2..18478bbda9d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-09-11 Miles Bader + + * editfns.c (Fbuffer_string): Doc fix. + 2000-09-10 Gerd Moellmann * 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.") DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0, "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. If in a mini-buffer, don't include the prompt in the\n\ -string returned.") +of the buffer.") () { return make_buffer_string (BEGV, ZV, 1);