diff options
| author | Glenn Morris | 2020-11-06 08:00:54 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-11-06 08:00:54 -0800 |
| commit | 6b77ad6e77a4812b05ee03360e853e0fcb822a96 (patch) | |
| tree | ecc6122de62a8802a811ad83507c70a415c16644 /src | |
| parent | 093a6bec52d21aba6b3b1318a6d7bafc2c870f25 (diff) | |
| download | emacs-6b77ad6e77a4812b05ee03360e853e0fcb822a96.tar.gz emacs-6b77ad6e77a4812b05ee03360e853e0fcb822a96.zip | |
Fix --enable-check-lisp-object-type build
* src/print.c (syms_of_print) <print-integers-as-characters>:
Fix type.
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 9ff331fb8e1..008bf5e6391 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2295,7 +2295,7 @@ Only independent graphic characters, and control characters with named | |||
| 2295 | escape sequences such as newline, are printed this way. Other | 2295 | escape sequences such as newline, are printed this way. Other |
| 2296 | integers, including those corresponding to raw bytes, are printed | 2296 | integers, including those corresponding to raw bytes, are printed |
| 2297 | as numbers the usual way. */); | 2297 | as numbers the usual way. */); |
| 2298 | print_integers_as_characters = Qnil; | 2298 | print_integers_as_characters = false; |
| 2299 | 2299 | ||
| 2300 | DEFVAR_LISP ("print-length", Vprint_length, | 2300 | DEFVAR_LISP ("print-length", Vprint_length, |
| 2301 | doc: /* Maximum length of list to print before abbreviating. | 2301 | doc: /* Maximum length of list to print before abbreviating. |