diff options
| author | Joakim Verona | 2013-02-16 00:04:20 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-02-16 00:04:20 +0100 |
| commit | 613fda6799a504feff2d5a930ef7998125498d10 (patch) | |
| tree | 8c7bee1d673435d544d74477ecf20d657b7fa489 /src/print.c | |
| parent | 73b3f91cfcc9b42d2851ced24d7ba3d17e4c6d00 (diff) | |
| parent | f852f6d8c0db494ccb21b6020a5ebbeaa685a948 (diff) | |
| download | emacs-613fda6799a504feff2d5a930ef7998125498d10.tar.gz emacs-613fda6799a504feff2d5a930ef7998125498d10.zip | |
auto upstream
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 5 |
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 | ||