diff options
| author | Thien-Thi Nguyen | 2005-09-03 18:12:46 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2005-09-03 18:12:46 +0000 |
| commit | 1c1a14713bdf466627afdc65f44442bdb91e9dae (patch) | |
| tree | a86a9c03a4dcba5be7b7931401b0ddc6caf62dd5 | |
| parent | 34b50776448c37b57eb35f23c522acd10b2903d4 (diff) | |
| download | emacs-1c1a14713bdf466627afdc65f44442bdb91e9dae.tar.gz emacs-1c1a14713bdf466627afdc65f44442bdb91e9dae.zip | |
(Buffer Contents): Use "\n" in examples' result strings.
| -rw-r--r-- | lispref/text.texi | 8 |
1 files changed, 3 insertions, 5 deletions
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 | |||
| 191 | 191 | ||
| 192 | @group | 192 | @group |
| 193 | (buffer-substring 1 10) | 193 | (buffer-substring 1 10) |
| 194 | @result{} "This is t" | 194 | @result{} "This is t" |
| 195 | @end group | 195 | @end group |
| 196 | @group | 196 | @group |
| 197 | (buffer-substring (point-max) 10) | 197 | (buffer-substring (point-max) 10) |
| 198 | @result{} "he contents of buffer foo | 198 | @result{} "he contents of buffer foo\n" |
| 199 | " | ||
| 200 | @end group | 199 | @end group |
| 201 | @end example | 200 | @end example |
| 202 | @end defun | 201 | @end defun |
| @@ -257,8 +256,7 @@ This is the contents of buffer foo | |||
| 257 | ---------- Buffer: foo ---------- | 256 | ---------- Buffer: foo ---------- |
| 258 | 257 | ||
| 259 | (buffer-string) | 258 | (buffer-string) |
| 260 | @result{} "This is the contents of buffer foo | 259 | @result{} "This is the contents of buffer foo\n" |
| 261 | " | ||
| 262 | @end group | 260 | @end group |
| 263 | @end example | 261 | @end example |
| 264 | @end defun | 262 | @end defun |