diff options
| author | Kenichi Handa | 2002-05-30 11:11:09 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-05-30 11:11:09 +0000 |
| commit | 2ec49574a7fa86b8e4a2fb98d076acd1ca981a56 (patch) | |
| tree | 01d236ee810a3a602b748af4697769463f40a9d7 | |
| parent | 050c6022b891790390a74e5177313b1136ec3c84 (diff) | |
| download | emacs-2ec49574a7fa86b8e4a2fb98d076acd1ca981a56.tar.gz emacs-2ec49574a7fa86b8e4a2fb98d076acd1ca981a56.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/coding.h | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 869f7420fdc..d50f09f6693 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2002-05-30 Kenichi Handa <handa@etl.go.jp> | 1 | 2002-05-30 Kenichi Handa <handa@etl.go.jp> |
| 2 | 2 | ||
| 3 | * language/japanese.el (japanese-iso-7bit-1978-irv): Add | ||
| 4 | `designation' to :flags, `ascii' to :charset-list. | ||
| 5 | |||
| 3 | * international/mule.el (define-charset): New args :min-code and | 6 | * international/mule.el (define-charset): New args :min-code and |
| 4 | :max-code. | 7 | :max-code. |
| 8 | (coding-system-iso-2022-flags): Add use-roman, use-oldjis. | ||
| 5 | 9 | ||
| 6 | * international/mule-conf.el (chinese-gbk): Change :code-offset to | 10 | * international/mule-conf.el (chinese-gbk): Change :code-offset to |
| 7 | #x160000. | 11 | #x160000. |
diff --git a/src/ChangeLog b/src/ChangeLog index 1f692dea373..509c2f48e3c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2002-05-30 Kenichi Handa <handa@etl.go.jp> | 1 | 2002-05-30 Kenichi Handa <handa@etl.go.jp> |
| 2 | 2 | ||
| 3 | * Makefile.in (lisp): Change chienese.elc to chinese.el. They are | ||
| 4 | not bytecompiled now. | ||
| 5 | (shortlisp): Likewise. | ||
| 6 | |||
| 3 | * charset.c (charset_jisx0201_roman, charset_jisx0208_1978, | 7 | * charset.c (charset_jisx0201_roman, charset_jisx0208_1978, |
| 4 | charset_jisx0208): New variables. | 8 | charset_jisx0208): New variables. |
| 5 | (Fdefine_charset_internal): Setup them if appropriate. | 9 | (Fdefine_charset_internal): Setup them if appropriate. |
diff --git a/src/coding.h b/src/coding.h index 1b14ff445f3..25b38caa37f 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -250,7 +250,7 @@ enum coding_result_code | |||
| 250 | `coding_system'. */ | 250 | `coding_system'. */ |
| 251 | struct iso_2022_spec | 251 | struct iso_2022_spec |
| 252 | { | 252 | { |
| 253 | /* */ | 253 | /* Bit-wise-or of CODING_ISO_FLAG_XXX. */ |
| 254 | unsigned flags; | 254 | unsigned flags; |
| 255 | 255 | ||
| 256 | /* The current graphic register invoked to each graphic plane. */ | 256 | /* The current graphic register invoked to each graphic plane. */ |