aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index f5f8450545d..9a84903e306 100644
--- a/src/print.c
+++ b/src/print.c
@@ -104,7 +104,8 @@ int print_output_debug_flag EXTERNALLY_VISIBLE = 1;
104 ptrdiff_t old_point_byte = -1, start_point_byte = -1; \ 104 ptrdiff_t old_point_byte = -1, start_point_byte = -1; \
105 ptrdiff_t specpdl_count = SPECPDL_INDEX (); \ 105 ptrdiff_t specpdl_count = SPECPDL_INDEX (); \
106 int free_print_buffer = 0; \ 106 int free_print_buffer = 0; \
107 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \ 107 bool multibyte \
108 = !NILP (BVAR (current_buffer, enable_multibyte_characters)); \
108 Lisp_Object original 109 Lisp_Object original
109 110
110#define PRINTPREPARE \ 111#define PRINTPREPARE \
@@ -1398,7 +1399,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
1398 /* 1 means we must ensure that the next character we output 1399 /* 1 means we must ensure that the next character we output
1399 cannot be taken as part of a hex character escape. */ 1400 cannot be taken as part of a hex character escape. */
1400 int need_nonhex = 0; 1401 int need_nonhex = 0;
1401 int multibyte = STRING_MULTIBYTE (obj); 1402 bool multibyte = STRING_MULTIBYTE (obj);
1402 1403
1403 GCPRO1 (obj); 1404 GCPRO1 (obj);
1404 1405