diff options
| author | Kenichi Handa | 2000-06-19 05:04:49 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-06-19 05:04:49 +0000 |
| commit | 10d7bf846ada075aa132dc26447c5026a11cafdd (patch) | |
| tree | 75c1e0cff9ac8ecdd4bb7ce3b21c0c93a3ec4081 | |
| parent | 5cf1bf864082f5ce0cb7f1ccf2929fb61aa0286f (diff) | |
| download | emacs-10d7bf846ada075aa132dc26447c5026a11cafdd.tar.gz emacs-10d7bf846ada075aa132dc26447c5026a11cafdd.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | src/ChangeLog | 19 |
2 files changed, 30 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9cf03fb026e..247d89ba874 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> | 1 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
| 2 | 2 | ||
| 3 | * international/codepage.el: | ||
| 4 | (cp-coding-system-for-codepage-1): Delete special codes for | ||
| 5 | generating xxx-dos coding system because now a CCL based coding | ||
| 6 | system can handle EOL conversion by default. | ||
| 7 | |||
| 8 | * international/mule.el (make-coding-system): Generate subsidiary | ||
| 9 | coding systems for EOL handling variants even for a CCL based | ||
| 10 | coding system. | ||
| 11 | |||
| 12 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> | ||
| 13 | |||
| 3 | * international/isearch-x.el (isearch-minibuffer-input-method) | 14 | * international/isearch-x.el (isearch-minibuffer-input-method) |
| 4 | (isearch-minibuffer-input-method-function): These variables | 15 | (isearch-minibuffer-input-method-function): These variables |
| 5 | deleted. | 16 | deleted. |
diff --git a/src/ChangeLog b/src/ChangeLog index e5a1569f30b..73f6dc10f23 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2000-06-19 Kenichi Handa <handa@etl.go.jp> | ||
| 2 | |||
| 3 | * ccl.h (struct ccl_program): New member eol_type. | ||
| 4 | (struct ccl_spec): New member cr_carryover. | ||
| 5 | |||
| 6 | * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type. | ||
| 7 | (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF. | ||
| 8 | |||
| 9 | * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'. | ||
| 10 | (ccl_coding_driver): On encoding, initialize ccl->eol_type. | ||
| 11 | (decode_eol_post_ccl): New function. | ||
| 12 | (decode_coding): Don't detect EOL format here for CCL based coding | ||
| 13 | systems. | ||
| 14 | (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call | ||
| 15 | decode_eol_post_ccl after running the CCL program. | ||
| 16 | (code_convert_region): Don't detect EOL format here for CCL based | ||
| 17 | coding systems. | ||
| 18 | (decode_coding_string): Likewise. | ||
| 19 | |||
| 1 | 2000-06-18 Ken Raeburn <raeburn@gnu.org> | 20 | 2000-06-18 Ken Raeburn <raeburn@gnu.org> |
| 2 | 21 | ||
| 3 | * charset.c (update_charset_table): Use XINT on "iso_final_char" | 22 | * charset.c (update_charset_table): Use XINT on "iso_final_char" |