aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2004-01-25 07:44:22 +0000
committerKenichi Handa2004-01-25 07:44:22 +0000
commit6e07c25f905a6186ebe2ae06719a0b18c9c5fc26 (patch)
tree7cdc4d906438ba6757f0a1d530c640483781c40f /src/coding.c
parent140294f6afa7cf187735c3dcd56866b5dbfdcd46 (diff)
downloademacs-6e07c25f905a6186ebe2ae06719a0b18c9c5fc26.tar.gz
emacs-6e07c25f905a6186ebe2ae06719a0b18c9c5fc26.zip
(Fdefine_coding_system_internal): Fix previous change.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index f4e4f27f7c1..03c0b00cc05 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -409,7 +409,6 @@ Lisp_Object Vtranslation_table_for_input;
409Lisp_Object Vsjis_coding_system; 409Lisp_Object Vsjis_coding_system;
410Lisp_Object Vbig5_coding_system; 410Lisp_Object Vbig5_coding_system;
411 411
412
413static void record_conversion_result (struct coding_system *coding, 412static void record_conversion_result (struct coding_system *coding,
414 enum coding_result_code result); 413 enum coding_result_code result);
415static int detect_coding_utf_8 P_ ((struct coding_system *, 414static int detect_coding_utf_8 P_ ((struct coding_system *,
@@ -7469,7 +7468,6 @@ buffer positions. END is ignored. */)
7469} 7468}
7470 7469
7471 7470
7472
7473Lisp_Object 7471Lisp_Object
7474code_convert_region (start, end, coding_system, dst_object, encodep, norecord) 7472code_convert_region (start, end, coding_system, dst_object, encodep, norecord)
7475 Lisp_Object start, end, coding_system, dst_object; 7473 Lisp_Object start, end, coding_system, dst_object;
@@ -8451,7 +8449,7 @@ usage: (define-coding-system-internal ...) */)
8451 struct charset *charset; 8449 struct charset *charset;
8452 8450
8453 if (XINT (Flength (charset_list)) != 3 8451 if (XINT (Flength (charset_list)) != 3
8454 || XINT (Flength (charset_list)) != 4) 8452 && XINT (Flength (charset_list)) != 4)
8455 error ("There should be three or four charsets"); 8453 error ("There should be three or four charsets");
8456 8454
8457 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); 8455 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list)));