aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-09-30 11:34:13 +0000
committerKenichi Handa2003-09-30 11:34:13 +0000
commitc1900b7e609f4f2419ebae3ca829c959e3b21774 (patch)
treed8ba7eefd79c655784c1e134c3e52d8e12be6c67
parent36358790c032dd01e452a04a224d7b7acffa1ba2 (diff)
downloademacs-c1900b7e609f4f2419ebae3ca829c959e3b21774.tar.gz
emacs-c1900b7e609f4f2419ebae3ca829c959e3b21774.zip
*** empty log message ***
-rw-r--r--etc/ChangeLog.225
-rw-r--r--lisp/ChangeLog.2235
-rw-r--r--src/ChangeLog.2221
3 files changed, 61 insertions, 0 deletions
diff --git a/etc/ChangeLog.22 b/etc/ChangeLog.22
index 065c356c201..067cb672b51 100644
--- a/etc/ChangeLog.22
+++ b/etc/ChangeLog.22
@@ -1,3 +1,8 @@
12003-09-26 Kenichi Handa <handa@m17n.org>
2
3 * ps-prin1.ps (HeaderOrFooterTextLines): Handle multiple strings
4 in a line.
5
12003-09-08 Kenichi Handa <handa@m17n.org> 62003-09-08 Kenichi Handa <handa@m17n.org>
2 7
3 * charsets: New directory for charset mapping tables. 8 * charsets: New directory for charset mapping tables.
diff --git a/lisp/ChangeLog.22 b/lisp/ChangeLog.22
index 3d531da5945..0a84688b9bb 100644
--- a/lisp/ChangeLog.22
+++ b/lisp/ChangeLog.22
@@ -1,8 +1,43 @@
12003-09-30 Kenichi Handa <handa@m17n.org>
2
3 * composite.el (auto-composition-chunk-size): Variable deleted.
4 (auto-compose-chars): Always stop after processing a newline.
5
12003-09-28 Kenichi Handa <handa@m17n.org> 62003-09-28 Kenichi Handa <handa@m17n.org>
2 7
3 * international/mule.el (define-coding-system): Fix attribute 8 * international/mule.el (define-coding-system): Fix attribute
4 name :for-unibyte. 9 name :for-unibyte.
5 10
112003-09-26 Kenichi Handa <handa@m17n.org>
12
13 * ps-bdf.el: Mostly re-written.
14
15 * ps-mule.el: Mostly re-written.
16
17 * ps-print.el (ps-generate-string-list): Function deleted.
18 (ps-rh-cache, ps-lf-cache, ps-rf-cache): Variables deleted.
19 (ps-header-footer-string): Function deleted.
20 (ps-encode-header-string-function): New variable
21 (ps-generate-header-line): Call ps-encode-header-string-function.
22 (ps-basic-plot-string-function): New variable
23 (ps-begin-job): Set ps-basic-plot-string-function and
24 ps-encode-header-string-function. For setting up headers and
25 footers, don't use caches such as ps-rh-cache. Don't call
26 ps-mule-begin-page.
27 (ps-basic-plot-str): Don't call ps-mule-prepare-ascii-font.
28 (ps-basic-plot-string): Likewise.
29 (ps-control-character): Likewise.
30 (ps-plot-region): Don't pay attention to composition and
31 non-ASCII characters.
32 (ps-generate): Call ps-mule-end-job.
33 (ps-mule-prepare-ascii-font): Delete autoload.
34 (ps-mule-set-ascii-font): Likewise.
35 (ps-mule-plot-string): Likewise.
36 (ps-mule-begin-page): Likewise.
37 (ps-mule-end-job): Declare autoload.
38
39 * composite.el (auto-compose-region): New function.
40
62003-09-11 Dave Love <fx@gnu.org> 412003-09-11 Dave Love <fx@gnu.org>
7 42
8 * international/mule-util.el 43 * international/mule-util.el
diff --git a/src/ChangeLog.22 b/src/ChangeLog.22
index db8f35bec45..5046ef0a04f 100644
--- a/src/ChangeLog.22
+++ b/src/ChangeLog.22
@@ -1,3 +1,19 @@
12003-09-30 Kenichi Handa <handa@m17n.org>
2
3 * xdisp.c (handle_auto_composed_prop): Check if the last
4 characters of auto-composed region is newly composed with the
5 following characters.
6 (handle_composition_prop): Fix checking of point being inside
7 composition.
8
92003-09-26 Kenichi Handa <handa@m17n.org>
10
11 * fns.c (concat): Don't change multibyteness of the result by
12 concatenating an 8-bit character.
13
14 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
15 multibyteness of the result when newelt is an 8-bit character.
16
12003-09-29 Dave Love <fx@gnu.org> 172003-09-29 Dave Love <fx@gnu.org>
2 18
3 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used 19 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
@@ -99,6 +115,11 @@
99 * fileio.c (Finsert_file_contents): Call setup_coding_system in 115 * fileio.c (Finsert_file_contents): Call setup_coding_system in
100 the case of auto saving. 116 the case of auto saving.
101 117
1182003-09-10 Andreas Schwab <schwab@suse.de>
119
120 * chartab.c (map_char_table): Protect `range' from GC.
121 (map_char_table_for_charset): Likewise.
122
1022003-07-09 Kenichi Handa <handa@m17n.org> 1232003-07-09 Kenichi Handa <handa@m17n.org>
103 124
104 * coding.c (decode_coding_sjis): Check bytes more rigidly. 125 * coding.c (decode_coding_sjis): Check bytes more rigidly.