diff options
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c index fa57edead28..0bd632d14b7 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3642,13 +3642,13 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3642 | ptrdiff_t max_bufsize = STRING_BYTES_BOUND + 1; | 3642 | ptrdiff_t max_bufsize = STRING_BYTES_BOUND + 1; |
| 3643 | char *p; | 3643 | char *p; |
| 3644 | Lisp_Object buf_save_value IF_LINT (= {0}); | 3644 | Lisp_Object buf_save_value IF_LINT (= {0}); |
| 3645 | register char *format, *end, *format_start; | 3645 | char *format, *end, *format_start; |
| 3646 | ptrdiff_t formatlen, nchars; | 3646 | ptrdiff_t formatlen, nchars; |
| 3647 | /* Nonzero if the format is multibyte. */ | 3647 | /* True if the format is multibyte. */ |
| 3648 | int multibyte_format = 0; | 3648 | bool multibyte_format = 0; |
| 3649 | /* Nonzero if the output should be a multibyte string, | 3649 | /* True if the output should be a multibyte string, |
| 3650 | which is true if any of the inputs is one. */ | 3650 | which is true if any of the inputs is one. */ |
| 3651 | int multibyte = 0; | 3651 | bool multibyte = 0; |
| 3652 | /* When we make a multibyte string, we must pay attention to the | 3652 | /* When we make a multibyte string, we must pay attention to the |
| 3653 | byte combining problem, i.e., a byte may be combined with a | 3653 | byte combining problem, i.e., a byte may be combined with a |
| 3654 | multibyte character of the previous string. This flag tells if we | 3654 | multibyte character of the previous string. This flag tells if we |