diff options
| author | Stefan Monnier | 2018-01-15 13:42:51 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2018-01-15 13:42:51 -0500 |
| commit | 72ee93d68daea00e2ee69417afd4e31b3145a9fa (patch) | |
| tree | f485b3e50d189e10384903641accf0933102640a /doc/lispref/sequences.texi | |
| parent | 8e05cb61a247a9035c5bf33b55c933d48c964dbc (diff) | |
| download | emacs-72ee93d68daea00e2ee69417afd4e31b3145a9fa.tar.gz emacs-72ee93d68daea00e2ee69417afd4e31b3145a9fa.zip | |
* src/print.c (syms_of_print) <print_quoted>: Set default to true
Diffstat (limited to 'doc/lispref/sequences.texi')
| -rw-r--r-- | doc/lispref/sequences.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 3a599e5f535..80079bcfb00 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -1298,9 +1298,9 @@ not evaluate or even examine the elements of the vector. | |||
| 1298 | @example | 1298 | @example |
| 1299 | @group | 1299 | @group |
| 1300 | (setq avector [1 two '(three) "four" [five]]) | 1300 | (setq avector [1 two '(three) "four" [five]]) |
| 1301 | @result{} [1 two (quote (three)) "four" [five]] | 1301 | @result{} [1 two '(three) "four" [five]] |
| 1302 | (eval avector) | 1302 | (eval avector) |
| 1303 | @result{} [1 two (quote (three)) "four" [five]] | 1303 | @result{} [1 two '(three) "four" [five]] |
| 1304 | (eq avector (eval avector)) | 1304 | (eq avector (eval avector)) |
| 1305 | @result{} t | 1305 | @result{} t |
| 1306 | @end group | 1306 | @end group |
| @@ -1390,9 +1390,9 @@ list with the same elements: | |||
| 1390 | @example | 1390 | @example |
| 1391 | @group | 1391 | @group |
| 1392 | (setq avector [1 two (quote (three)) "four" [five]]) | 1392 | (setq avector [1 two (quote (three)) "four" [five]]) |
| 1393 | @result{} [1 two (quote (three)) "four" [five]] | 1393 | @result{} [1 two '(three) "four" [five]] |
| 1394 | (append avector nil) | 1394 | (append avector nil) |
| 1395 | @result{} (1 two (quote (three)) "four" [five]) | 1395 | @result{} (1 two '(three) "four" [five]) |
| 1396 | @end group | 1396 | @end group |
| 1397 | @end example | 1397 | @end example |
| 1398 | 1398 | ||