X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Futf-2000%2Fmaps-conf.el;h=4b391731801da5b2b95326135f36ce904370a9bf;hb=7638b97067f4cbfe7704940d110d223394601946;hp=ef0602486c29f0bb2166b36a5fdf82396ae89714;hpb=352629c1ee731c8baec69ac277f4a5aa7477bbb6;p=chise%2Fxemacs-chise.git.1 diff --git a/lisp/utf-2000/maps-conf.el b/lisp/utf-2000/maps-conf.el index ef06024..4b39173 100644 --- a/lisp/utf-2000/maps-conf.el +++ b/lisp/utf-2000/maps-conf.el @@ -60,7 +60,12 @@ #x4337 #x492D #x3F6C #x6E4D #x4F3F #x353D #x4324 #x475B #x6E47 #x4371 #x3F5D #x6E49 #x4D6F #x3C72 #x3D37 - #x6E4C #x3B44 #x734E #x5567)) + #x6E4C #x3B44 #x734E #x5567 #x545A + #x3071 #x332A #x516A #x476D #x3675 + #x5734 #x552D #x565A #x564B #x5B79 + #x5C74 #x5C27 #x5B5E #x3564 #x3823 + #x6131 #x4A4D #x632E #x635E #x3729 + #x3951)) (put-char-attribute (decode-char 'japanese-jisx0208-1990 v) '=gt-pj-1 v)) nil) @@ -109,3 +114,92 @@ (put-char-attribute (decode-char ccs v) '=gt gt)) nil) ccs))) + +;; (let (ret) +;; (dolist (feature +;; (let (dest) +;; (dolist (feature (char-attribute-list)) +;; (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)" +;; (symbol-name feature)) +;; (setq dest (cons feature dest)))) +;; dest)) +;; (map-char-attribute +;; (lambda (c v) +;; (when (setq ret (memq 'shinjigen-1 v)) +;; (setcar ret 'shinjigen@1ed)) +;; (when (setq ret (memq 'shinjigen-2 v)) +;; (setcar ret 'shinjigen@rev)) +;; nil) +;; feature))) + +;; (map-char-attribute +;; (lambda (c v) +;; (when (eq (encode-char c '=shinjigen@rev) v) +;; (put-char-attribute c '=shinjigen v) +;; (remove-char-attribute c '=shinjigen@1ed) +;; (remove-char-attribute c '=shinjigen@rev) +;; ) +;; nil) +;; '=shinjigen@1ed) + +;; (let (ret) +;; (dolist (feature +;; (let (dest) +;; (dolist (feature (char-attribute-list)) +;; (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)" +;; (symbol-name feature)) +;; (setq dest (cons feature dest)))) +;; dest)) +;; (map-char-attribute +;; (lambda (c v) +;; (cond ((setq ret (memq 'shinjigen@1ed v)) +;; (when (memq 'shinjigen@rev ret) +;; (setcar ret 'shinjigen) +;; (delq 'shinjigen@rev ret) +;; )) +;; ((setq ret (memq 'shinjigen@rev v)) +;; (when (memq 'shinjigen@1ed ret) +;; (setcar ret 'shinjigen) +;; (delq 'shinjigen@1ed ret) +;; ))) +;; nil) +;; feature))) + +(dolist (ccs '(=jis-x0208 =jis-x0208@1990)) + (map-char-attribute + (lambda (c v) + (unless (eq (encode-char c '=jis-x0213-1@2000) v) + (put-char-attribute c '=jis-x0213-1 v)) + nil) + ccs)) + +(with-temp-buffer + (buffer-disable-undo) + (insert-file-contents "../etc/char-data/JX3-JX1-rep-diff.txt") + (goto-char (point-min)) + (let (ku ten char code ucs) + (while (re-search-forward "^1-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+" nil t) + (setq ku (string-to-number (match-string 1)) + ten (string-to-number (match-string 2))) + (setq char (make-char '=jis-x0213-1@2000 (+ ku 32)(+ ten 32))) + (setq code (encode-char char '=jis-x0213-1@2000)) + (put-char-attribute char '=jis-x0213-1@2000 code) + (remove-char-attribute char '=jis-x0213-1) + (remove-char-attribute char '=jis-x0213-1@2004) + (setq ucs (encode-char char '=ucs@jis/2000)) + (remove-char-attribute char '=ucs@jis) + (remove-char-attribute char '=ucs@jis/2004) + (when (setq char (decode-char '=jis-x0213-1@2004 code)) + (unless (eq (encode-char char '=ucs@jis/2004) ucs) + (put-char-attribute char '=ucs@jis/2004 ucs))) + (when (setq char (decode-char '=>jis-x0208@1997 code 'defined-only)) + (put-char-attribute char '=>jis-x0208 code) + (remove-char-attribute char '=>jis-x0208@1997)) + ))) + +(map-char-attribute + (lambda (c v) + (unless (eq (encode-char c '=>jis-x0213-1) v) + (put-char-attribute c '=>jis-x0213-1 v)) + nil) + '=>jis-x0208)