diff options
| author | Kenichi Handa | 2005-05-10 02:35:10 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2005-05-10 02:35:10 +0000 |
| commit | 4c452d71b683d94c6f989a7dab957eab943f2b12 (patch) | |
| tree | 15588ce65ecc47684788318fd548c64ff57edfa6 /admin | |
| parent | 0c98802f165db9dd4c768682a5b22cd8713fa40f (diff) | |
| download | emacs-4c452d71b683d94c6f989a7dab957eab943f2b12.tar.gz emacs-4c452d71b683d94c6f989a7dab957eab943f2b12.zip | |
*** empty log message ***
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog.unicode | 16 | ||||
| -rw-r--r-- | admin/unidata/Makefile | 11 |
2 files changed, 23 insertions, 4 deletions
diff --git a/admin/ChangeLog.unicode b/admin/ChangeLog.unicode index e2b2e05d4f2..edb12a50319 100644 --- a/admin/ChangeLog.unicode +++ b/admin/ChangeLog.unicode | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2005-05-10 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * unidata/unidata-gen.el: Typo fixed in comments. Change | ||
| 4 | string-to-int to string-to-number. | ||
| 5 | (unidata-text-file): Defined to .../unidata.txt. | ||
| 6 | (unidata-list): Just insert unidata-text-file. | ||
| 7 | (unidata-get-decomposition): Handle Hangul decomposition. | ||
| 8 | (unidata-gen-files): Don't use \040, instead at ^L near the end of | ||
| 9 | file. | ||
| 10 | |||
| 11 | * unidata/Makefile (TEMACS): Renamed from EMACS. Set to temacs. | ||
| 12 | Caller changed. | ||
| 13 | (unidata.txt): New target. | ||
| 14 | (charprop.el): Depends on unidata.txt. | ||
| 15 | (clean): Remove unidata.txt. | ||
| 16 | |||
| 1 | 2005-03-02 Kenichi Handa <handa@m17n.org> | 17 | 2005-03-02 Kenichi Handa <handa@m17n.org> |
| 2 | 18 | ||
| 3 | * unidata/unidata-gen.el (unidata-get-name): Handle "CJK IDEOGRAPH". | 19 | * unidata/unidata-gen.el (unidata-get-name): Handle "CJK IDEOGRAPH". |
diff --git a/admin/unidata/Makefile b/admin/unidata/Makefile index 1d1c41464dd..b14c2994656 100644 --- a/admin/unidata/Makefile +++ b/admin/unidata/Makefile | |||
| @@ -20,16 +20,19 @@ | |||
| 20 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 20 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 21 | # Boston, MA 02111-1307, USA. | 21 | # Boston, MA 02111-1307, USA. |
| 22 | 22 | ||
| 23 | EMACS = ../../src/emacs | 23 | TEMACS = ../../src/temacs |
| 24 | DSTDIR = ../../lisp/international | 24 | DSTDIR = ../../lisp/international |
| 25 | RUNEMACS = ${EMACS} -q --no-site-file --multibyte -batch | 25 | RUNEMACS = ${TEMACS} -Q --multibyte -batch |
| 26 | 26 | ||
| 27 | all: charprop.el | 27 | all: charprop.el |
| 28 | 28 | ||
| 29 | unidata-gen.elc: unidata-gen.el | 29 | unidata-gen.elc: unidata-gen.el |
| 30 | ${RUNEMACS} -f batch-byte-compile ./unidata-gen.el | 30 | ${RUNEMACS} -f batch-byte-compile ./unidata-gen.el |
| 31 | 31 | ||
| 32 | charprop.el: unidata-gen.elc UnicodeData.txt | 32 | unidata.txt: UnicodeData.txt |
| 33 | sed -e 's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e 's/;/" "/g' < $< > $@ | ||
| 34 | |||
| 35 | charprop.el: unidata-gen.elc unidata.txt | ||
| 33 | ${RUNEMACS} -l ./unidata-gen.elc -f unidata-gen-files | 36 | ${RUNEMACS} -l ./unidata-gen.elc -f unidata-gen-files |
| 34 | 37 | ||
| 35 | install: charprop.el | 38 | install: charprop.el |
| @@ -40,4 +43,4 @@ clean: | |||
| 40 | if test -f charprop.el; then \ | 43 | if test -f charprop.el; then \ |
| 41 | rm -f `sed -n 's/^;; FILE: //p' < charprop.el`; \ | 44 | rm -f `sed -n 's/^;; FILE: //p' < charprop.el`; \ |
| 42 | fi | 45 | fi |
| 43 | rm -f charprop.el unidata-gen.elc | 46 | rm -f charprop.el unidata-gen.elc unidata.txt |