aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-09-07 02:55:04 +0000
committerKenichi Handa2000-09-07 02:55:04 +0000
commit0fddd0dcaf26e652adf5a428eccdf35f27d8914e (patch)
treeb17696dfc2d295c43274331b2fb96451c3cd682d
parent7c10feb119c4975e28827d8bd7b57ec4dd4d5f4e (diff)
downloademacs-0fddd0dcaf26e652adf5a428eccdf35f27d8914e.tar.gz
emacs-0fddd0dcaf26e652adf5a428eccdf35f27d8914e.zip
*** empty log message ***
-rw-r--r--leim/ChangeLog24
-rw-r--r--lisp/ChangeLog39
-rw-r--r--src/ChangeLog6
3 files changed, 69 insertions, 0 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index c40370581e3..64063543886 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,27 @@
12000-09-07 Kenichi Handa <handa@etl.go.jp>
2
3 * quail/thai.el ("thai-kesmanee", "thai-pattachote"): Use keyboard
4 translation.
5
6 * quail/pypunct-b5.el ("chinese-py-punct-b5"): Docstring modified.
7
8 * quail/py-punct.el ("chinese-py-punct"): Docstring modified.
9 ("chinese-tonepy-punct"): New input method.
10
11 * quail/latin-pre.el ("polish-slash"): Don't use keyboard
12 translation.
13
14 * quail/japanese.el ("japanese"): Delete the key sequence for
15 Roman transliteration from the docstring because it's now shonw
16 automatically.
17 ("japanese-ascii", "japanese-zenkaku")
18 ("japanese-hankaku-kana", "japanese-hiragana")
19 ("japanese-katakana"): Docstring modified.
20
21 * quail/czech.el ("czech-qwerty"): Changed to show keyboard layout
22 on describe-input-method.
23 ("czech-prog-1", "czech-prog-2", "czech-prog-3"): Likewise.
24
12000-09-03 Andrew Innes <andrewi@gnu.org> 252000-09-03 Andrew Innes <andrewi@gnu.org>
2 26
3 * makefile.w32-in: New file. 27 * makefile.w32-in: New file.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 36a589d6722..b7d8fc5d564 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,42 @@
12000-09-07 Kenichi Handa <handa@etl.go.jp>
2
3 * help.el (help-make-xrefs): Adjusted for the change of
4 help-xref-mule-regexp.
5 (help-insert-xref-button): New function.
6
7 * international/mule-cmds.el (help-xref-mule-regexp-template):
8 Include the pattern for character set.
9 (leim): New group.
10
11 * international/quail.el: Don't require face.
12 (quail): New group.
13 (quail-other-command): Dummy command to make quail-help works
14 better.
15 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
16 (quail-keyboard-layout-substitution): New variable.
17 (quail-update-keyboard-layout): New function.
18 (quail-keyboard-layout-type): New customizable variable.
19 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
20 (quail-keyboard-translate): Pay attention to
21 quail-keyboard-layout-substitution.
22 (quail-insert-kbd-layout): New function.
23 (quail-show-keyboard-layout): New function.
24 (quail-get-translation): If the definition is a vector of length
25 1, and the element is a string of lenght 1, return the character
26 in that string.
27 (quail-update-current-translations): Fix the case of
28 relative-index out of range.
29 (quail-build-decode-map, quail-insert-decode-map): New Functions.
30 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
31 Show key sequences for all avairable characters.
32 (quail-help-insert-keymap-description): Don't show such verbose
33 key bindings as quail-self-insert-command.
34
35 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
36 Format changed, and each element now have extra documentations.
37 (tit-process-header): Delete invalid characters from TIT-PROMPT.
38 Adjusted for the change of quail-cxterm-package-ext-info.
39
12000-09-06 Gerd Moellmann <gerd@gnu.org> 402000-09-06 Gerd Moellmann <gerd@gnu.org>
2 41
3 * vc-hooks.el (toplevel): Don't require `vc' during compilation; 42 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
diff --git a/src/ChangeLog b/src/ChangeLog
index ac569eb487f..2c32b4a04e0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12000-09-07 Kenichi Handa <handa@etl.go.jp> 12000-09-07 Kenichi Handa <handa@etl.go.jp>
2 2
3 * charset.c: Include composite.h
4 (lisp_string_width): New function.
5 (Fstring_width): Call lisp_string_width instead of strwidth.
6
7 * Makefile.in (charset.o): Depends on composite.h.
8
3 * process.c (read_process_output): Before inserting the decoded 9 * process.c (read_process_output): Before inserting the decoded
4 text in the buffer, adjust the multibyteness. 10 text in the buffer, adjust the multibyteness.
5 11