comparison src/ChangeLog.22 @ 89670:7b299a7f9bc8

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Tue, 02 Dec 2003 01:47:37 +0000
parents 4e8e27a50801
children 3b65414d605d
comparison
equal deleted inserted replaced
89669:6871c119b186 89670:7b299a7f9bc8
1 2003-12-02 Kenichi Handa <handa@m17n.org>
2
3 * fontset.c (Fset_fontset_font): Fix docstring.
4
5 * lisp.h (detect_coding_system): Adjust prototype.
6
7 * fileio.c (kill_workbuf_unwind): Delete this function.
8 (Finsert_file_contents): Adjust the call of detect_coding_system.
9 Get conversion_buffer by code_conversion_save. Use the macor
10 CODING_MAY_REQUIRE_DECODING. After decoding, update
11 coding_system.
12
13 * coding.h (make_conversion_work_buffer): Delete extern.
14 (code_conversion_save): Extern it.
15
16 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
17 (CODING_GET_INFO): Delete argument eol_type. Callers changed.
18 (decode_coding_utf_8): Don't do eol converion.
19 (detect_coding_utf_16): Check coding->src_chars, not
20 coding->src_bytes. Add heuristics for those that have no
21 signature.
22 (decode_coding_emacs_mule): Don't do eol converion.
23 (decode_coding_iso_2022): Likewise.
24 (decode_coding_sjis): Likewise.
25 (decode_coding_big5): Likewise.
26 (decode_coding_charset): Likewise.
27 (adjust_coding_eol_type): Return a new coding system.
28 (detect_coding): Don't detect eol. Fix for utf-16 detection.
29 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
30 each change.
31 (decode_coding): Pay attention to undo_list. Do eol convesion for
32 all types of coding-systems (if necessary).
33 (Vcode_conversion_work_buf_list): Delete it.
34 (Vcode_conversion_reused_workbuf): Renamed from
35 Vcode_conversion_reused_work_buf.
36 (Vcode_conversion_workbuf_name): New variable.
37 (reused_workbuf_in_use): New variable.
38 (make_conversion_work_buffer): Delete the arg DEPTH.
39 (code_conversion_restore): Argument changed to cons.
40 (code_conversion_save): Delete the argument BUFFER. Callers
41 changed.
42 (detect_coding_system): New argument src_chars. Callers changed.
43 Fix for utf-16 detection.
44 (init_coding_once): Don't use ISO_carriage_return.
45 (syms_of_coding): Initialized Vcode_conversion_workbuf_name and
46 reused_workbuf_in_use.
47
1 2003-11-24 Kenichi Handa <handa@m17n.org> 48 2003-11-24 Kenichi Handa <handa@m17n.org>
2 49
3 * keymap.c (store_in_keymap): Pay attention to the case that idx 50 * keymap.c (store_in_keymap): Pay attention to the case that idx
4 is a cons specifying a character range. 51 is a cons specifying a character range.
5 52