diff options
| author | Dave Love | 2002-06-24 18:28:25 +0000 |
|---|---|---|
| committer | Dave Love | 2002-06-24 18:28:25 +0000 |
| commit | c163613eac3f6f41bd7af86a2bf02b378ce412fa (patch) | |
| tree | 5819fe88739b928b1c46e2fb78945f54fa490cea | |
| parent | 739a7985f6579c25c702bae8e7c6c94c77393ed0 (diff) | |
| download | emacs-c163613eac3f6f41bd7af86a2bf02b378ce412fa.tar.gz emacs-c163613eac3f6f41bd7af86a2bf02b378ce412fa.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | src/ChangeLog | 16 |
2 files changed, 27 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9f2f5d54a47..3383800fbe4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2002-06-24 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * international/characters.el: Make korean-ksc5601 double-width. | ||
| 4 | |||
| 5 | * international/mule.el (auto-coding-regexp-alist): Recognize | ||
| 6 | Emacs 20/1 byte-compiled files. | ||
| 7 | |||
| 8 | * international/mule-conf.el (file-coding-system-alist): Change | ||
| 9 | .elc to utf-8-Emacs. | ||
| 10 | |||
| 11 | * emacs-lisp/bytecomp.el (byte-recompile-directory) | ||
| 12 | (batch-byte-recompile-directory): Update from trunk. | ||
| 13 | (byte-compile-fix-header): Adjust for use of utf-8-emacs. | ||
| 14 | (byte-compile-insert-header): Update magic number. Add ballast. | ||
| 15 | (map-char-table): Use byte-compile-funarg-2. | ||
| 16 | |||
| 1 | 2002-06-16 Dave Love <fx@gnu.org> | 17 | 2002-06-16 Dave Love <fx@gnu.org> |
| 2 | 18 | ||
| 3 | * international/mule-cmds.el (set-locale-environment): Use | 19 | * international/mule-cmds.el (set-locale-environment): Use |
diff --git a/src/ChangeLog b/src/ChangeLog index 9e52d7fc38b..847a9b40039 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-06-24 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * lread.c: Remove some unused variables. | ||
| 4 | (safe_to_load_p): If safe, return the magic number version byte. | ||
| 5 | (Fload): Maybe use load-with-code-conversion. | ||
| 6 | |||
| 1 | 2002-06-12 Kenichi Handa <handa@etl.go.jp> | 7 | 2002-06-12 Kenichi Handa <handa@etl.go.jp> |
| 2 | 8 | ||
| 3 | * category.c (Fmodify_category_entry): Don't modify the contents | 9 | * category.c (Fmodify_category_entry): Don't modify the contents |
| @@ -12,14 +18,14 @@ | |||
| 12 | 18 | ||
| 13 | * charset.h (enum define_charset_arg_index): Delete | 19 | * charset.h (enum define_charset_arg_index): Delete |
| 14 | charset_arg_parents and add charset_arg_subset and | 20 | charset_arg_parents and add charset_arg_subset and |
| 15 | charset_arg_superset,. | 21 | charset_arg_superset. |
| 16 | (enum charset_attr_index): Delete charset_parents and add | 22 | (enum charset_attr_index): Delete charset_parents and add |
| 17 | charset_subset and charset_superset. | 23 | charset_subset and charset_superset. |
| 18 | (enum charset_method): Delete CHARSET_METHOD_INHERIT and add | 24 | (enum charset_method): Delete CHARSET_METHOD_INHERIT and add |
| 19 | CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET. | 25 | CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET. |
| 20 | (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Macros deleted. | 26 | (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Macros deleted. |
| 21 | (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET, | 27 | (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET) |
| 22 | CHARSET_SUPERSET): New macros. | 28 | (CHARSET_SUPERSET): New macros. |
| 23 | (charset_work): Extern it. | 29 | (charset_work): Extern it. |
| 24 | (ENCODE_CHAR): Use charset_work. | 30 | (ENCODE_CHAR): Use charset_work. |
| 25 | (CHAR_CHARSET_P): Adjusted for the change of encoder format. | 31 | (CHAR_CHARSET_P): Adjusted for the change of encoder format. |
| @@ -89,8 +95,8 @@ | |||
| 89 | not bytecompiled now. | 95 | not bytecompiled now. |
| 90 | (shortlisp): Likewise. | 96 | (shortlisp): Likewise. |
| 91 | 97 | ||
| 92 | * charset.c (charset_jisx0201_roman, charset_jisx0208_1978, | 98 | * charset.c (charset_jisx0201_roman, charset_jisx0208_1978) |
| 93 | charset_jisx0208): New variables. | 99 | (charset_jisx0208): New variables. |
| 94 | (Fdefine_charset_internal): Setup them if appropriate. | 100 | (Fdefine_charset_internal): Setup them if appropriate. |
| 95 | (init_charset_once): Initialize them to -1. | 101 | (init_charset_once): Initialize them to -1. |
| 96 | 102 | ||