diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/coding.c | 2 | ||||
| -rw-r--r-- | src/coding.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index fcd5e89e004..92e5af8b390 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -5654,7 +5654,7 @@ code_convert_string_norecord (string, coding_system, encodep) | |||
| 5654 | 5654 | ||
| 5655 | coding.composing = COMPOSITION_DISABLED; | 5655 | coding.composing = COMPOSITION_DISABLED; |
| 5656 | coding.mode |= CODING_MODE_LAST_BLOCK; | 5656 | coding.mode |= CODING_MODE_LAST_BLOCK; |
| 5657 | return code_convert_string (string, &coding, encodep, Qt); | 5657 | return code_convert_string (string, &coding, encodep, 1); |
| 5658 | } | 5658 | } |
| 5659 | 5659 | ||
| 5660 | DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, | 5660 | DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, |
diff --git a/src/coding.h b/src/coding.h index d226d433a0a..12c14da4d02 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -597,6 +597,8 @@ extern int conversion_buffer_size; | |||
| 597 | extern char *conversion_buffer; | 597 | extern char *conversion_buffer; |
| 598 | extern char *get_conversion_buffer P_ ((int)); | 598 | extern char *get_conversion_buffer P_ ((int)); |
| 599 | extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); | 599 | extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
| 600 | extern Lisp_Object code_convert_string P_ ((Lisp_Object, | ||
| 601 | struct coding_system *, int, int)); | ||
| 600 | extern void setup_raw_text_coding_system P_ ((struct coding_system *)); | 602 | extern void setup_raw_text_coding_system P_ ((struct coding_system *)); |
| 601 | extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; | 603 | extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
| 602 | extern Lisp_Object Qraw_text, Qemacs_mule; | 604 | extern Lisp_Object Qraw_text, Qemacs_mule; |