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 /src | |
| 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 'src')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 47cb33deeba..0e1980d84be 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2366,7 +2366,7 @@ This affects only `prin1'. */); | |||
| 2366 | DEFVAR_BOOL ("print-quoted", print_quoted, | 2366 | DEFVAR_BOOL ("print-quoted", print_quoted, |
| 2367 | doc: /* Non-nil means print quoted forms with reader syntax. | 2367 | doc: /* Non-nil means print quoted forms with reader syntax. |
| 2368 | I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); | 2368 | I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); |
| 2369 | print_quoted = 0; | 2369 | print_quoted = true; |
| 2370 | 2370 | ||
| 2371 | DEFVAR_LISP ("print-gensym", Vprint_gensym, | 2371 | DEFVAR_LISP ("print-gensym", Vprint_gensym, |
| 2372 | doc: /* Non-nil means print uninterned symbols so they will read as uninterned. | 2372 | doc: /* Non-nil means print uninterned symbols so they will read as uninterned. |