diff options
| author | Paul Eggert | 2018-04-25 12:20:04 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-04-25 12:25:58 -0700 |
| commit | a92e7b4ef6915e079a97e4e33e45b11508170cb1 (patch) | |
| tree | e51d150a9c85923df8a470233b7cac9bdc5e16c2 /src/print.c | |
| parent | 28930785d7a8ee871f000be3545daab246c96d73 (diff) | |
| download | emacs-a92e7b4ef6915e079a97e4e33e45b11508170cb1.tar.gz emacs-a92e7b4ef6915e079a97e4e33e45b11508170cb1.zip | |
Don’t set print-escape-newlines in the minibuffer
This appears to be an unnecessary and possibly-confusing
revenant from ancient code (Bug#31251). See thread containing:
https://lists.gnu.org/r/emacs-devel/2018-04/msg00654.html
* src/minibuf.c (read_minibuf): Do not set print-escape-newlines.
* src/print.c (syms_of_print): Do not defsym print-escape-newlines
or print-escape-control-characters, as these symbols are not used
in C code.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index a8bbb9d37a1..7c6856af48c 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2447,10 +2447,8 @@ priorities. */); | |||
| 2447 | defsubr (&Sredirect_debugging_output); | 2447 | defsubr (&Sredirect_debugging_output); |
| 2448 | defsubr (&Sprint_preprocess); | 2448 | defsubr (&Sprint_preprocess); |
| 2449 | 2449 | ||
| 2450 | DEFSYM (Qprint_escape_newlines, "print-escape-newlines"); | ||
| 2451 | DEFSYM (Qprint_escape_multibyte, "print-escape-multibyte"); | 2450 | DEFSYM (Qprint_escape_multibyte, "print-escape-multibyte"); |
| 2452 | DEFSYM (Qprint_escape_nonascii, "print-escape-nonascii"); | 2451 | DEFSYM (Qprint_escape_nonascii, "print-escape-nonascii"); |
| 2453 | DEFSYM (Qprint_escape_control_characters, "print-escape-control-characters"); | ||
| 2454 | 2452 | ||
| 2455 | print_prune_charset_plist = Qnil; | 2453 | print_prune_charset_plist = Qnil; |
| 2456 | staticpro (&print_prune_charset_plist); | 2454 | staticpro (&print_prune_charset_plist); |