# HG changeset patch # User Kenichi Handa # Date 881640723 0 # Node ID 9960d1196c09a7c26067a22b5ff3b7598a50433b # Parent a43789debf4857a90d8b2a5ab3088f84c4c21067 (setup_coding_system): Do not set Vlast_coding_system_used here. (decode_coding_sjis_big5): Decode Big5 text of CR only end-of-line correctly. diff -r a43789debf48 -r 9960d1196c09 src/coding.c --- a/src/coding.c Tue Dec 09 04:12:03 1997 +0000 +++ b/src/coding.c Tue Dec 09 04:12:03 1997 +0000 @@ -1928,6 +1928,8 @@ /* To process C2 again, SRC is subtracted by 1. */ *dst++ = c1, src--; } + else if (coding->eol_type == CODING_EOL_CR) + *dst++ = '\n'; else *dst++ = c1; } @@ -2329,7 +2331,7 @@ coding->character_unification_table_for_decode = Qnil; coding->character_unification_table_for_encode = Qnil; - Vlast_coding_system_used = coding->symbol = coding_system; + coding->symbol = coding_system; eol_type = Qnil; /* Get values of property `coding-system' and `eol-type'.