diff options
| author | Kenichi Handa | 2003-12-02 01:47:37 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-12-02 01:47:37 +0000 |
| commit | e6baeb7650d2adf09cdf537f032631fb8f609138 (patch) | |
| tree | de714b87c25dee84c246aec8fca0f42da77ddcd2 | |
| parent | 95318a38d575948a1fa478006d69bde801eb02dd (diff) | |
| download | emacs-e6baeb7650d2adf09cdf537f032631fb8f609138.tar.gz emacs-e6baeb7650d2adf09cdf537f032631fb8f609138.zip | |
*** empty log message ***
| -rw-r--r-- | src/ChangeLog.22 | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/ChangeLog.22 b/src/ChangeLog.22 index e4feff3114d..a4746a0eee9 100644 --- a/src/ChangeLog.22 +++ b/src/ChangeLog.22 | |||
| @@ -1,3 +1,50 @@ | |||
| 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 |