From: Thien-Thi Nguyen Date: Sat, 3 Sep 2005 18:12:46 +0000 (+0000) Subject: (Buffer Contents): Use "\n" in examples' result strings. X-Git-Tag: emacs-pretest-22.0.90~7269 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1c1a14713bdf466627afdc65f44442bdb91e9dae;p=emacs.git (Buffer Contents): Use "\n" in examples' result strings. --- diff --git a/lispref/text.texi b/lispref/text.texi index 59259415cc0..be6dce43e31 100644 --- a/lispref/text.texi +++ b/lispref/text.texi @@ -191,12 +191,11 @@ This is the contents of buffer foo @group (buffer-substring 1 10) -@result{} "This is t" + @result{} "This is t" @end group @group (buffer-substring (point-max) 10) -@result{} "he contents of buffer foo -" + @result{} "he contents of buffer foo\n" @end group @end example @end defun @@ -257,8 +256,7 @@ This is the contents of buffer foo ---------- Buffer: foo ---------- (buffer-string) - @result{} "This is the contents of buffer foo -" + @result{} "This is the contents of buffer foo\n" @end group @end example @end defun