diff options
| author | Dave Love | 2002-09-25 00:00:33 +0000 |
|---|---|---|
| committer | Dave Love | 2002-09-25 00:00:33 +0000 |
| commit | 6ca54a3a6fa9a080c1f97e323c7f4216e37bb9e3 (patch) | |
| tree | 345574e7b88af9cd63e3ca6625d7487bfcd739a4 | |
| parent | b427c97eb754d63f52b752243a30eddacbdac8be (diff) | |
| download | emacs-6ca54a3a6fa9a080c1f97e323c7f4216e37bb9e3.tar.gz emacs-6ca54a3a6fa9a080c1f97e323c7f4216e37bb9e3.zip | |
Fix last change.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/international/characters.el | 14 |
2 files changed, 12 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 706e3aa5c20..a56097ef9a9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-09-25 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * international/characters.el: Fix last change. | ||
| 4 | |||
| 1 | 2002-09-23 Dave Love <fx@gnu.org> | 5 | 2002-09-23 Dave Love <fx@gnu.org> |
| 2 | 6 | ||
| 3 | * international/characters.el: Don't set char width of CJK | 7 | * international/characters.el: Don't set char width of CJK |
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index 36a67cb5137..0e8d82bea4b 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el | |||
| @@ -145,6 +145,8 @@ | |||
| 145 | (modify-syntax-entry ?\』 ")『") | 145 | (modify-syntax-entry ?\』 ")『") |
| 146 | (modify-syntax-entry ?\〗 ")〖") | 146 | (modify-syntax-entry ?\〗 ")〖") |
| 147 | (modify-syntax-entry ?\】 ")【") | 147 | (modify-syntax-entry ?\】 ")【") |
| 148 | (modify-syntax-entry ?\〚 "(〛") | ||
| 149 | (modify-syntax-entry ?\〛 ")〚") | ||
| 148 | 150 | ||
| 149 | (map-charset-chars #'modify-category-entry 'chinese-gb2312 ?c) | 151 | (map-charset-chars #'modify-category-entry 'chinese-gb2312 ?c) |
| 150 | (map-charset-chars #'modify-category-entry 'chinese-gb2312 ?|) | 152 | (map-charset-chars #'modify-category-entry 'chinese-gb2312 ?|) |
| @@ -680,21 +682,21 @@ | |||
| 680 | 682 | ||
| 681 | ;; Arrows | 683 | ;; Arrows |
| 682 | (setq c #x2190) | 684 | (setq c #x2190) |
| 683 | (while (<= c #c21FF) | 685 | (while (<= c #x21FF) |
| 684 | (set-case-syntax-pair c "." tbl) | 686 | (set-case-syntax c "." tbl) |
| 685 | (setq c (1+ c))) | 687 | (setq c (1+ c))) |
| 686 | ;; Mathematical Operators | 688 | ;; Mathematical Operators |
| 687 | (while (<= c #x22FF) | 689 | (while (<= c #x22FF) |
| 688 | (set-case-syntax-pair c "." tbl) | 690 | (set-case-syntax c "." tbl) |
| 689 | (setq c (1+ c))) | 691 | (setq c (1+ c))) |
| 690 | ;; Miscellaneous Technical | 692 | ;; Miscellaneous Technical |
| 691 | (while (<= c #x23FF) | 693 | (while (<= c #x23FF) |
| 692 | (set-case-syntax-pair c "." tbl) | 694 | (set-case-syntax c "." tbl) |
| 693 | (setq c (1+ c))) | 695 | (setq c (1+ c))) |
| 694 | ;; Control Pictures | 696 | ;; Control Pictures |
| 695 | (while (<= c #x243F) | 697 | (while (<= c #x243F) |
| 696 | (set-case-syntax-pair c "_" tbl) | 698 | (set-case-syntax c "_" tbl) |
| 697 | (set c (1+ c))) | 699 | (setq c (1+ c))) |
| 698 | 700 | ||
| 699 | ;; Circled Latin | 701 | ;; Circled Latin |
| 700 | (setq c #x24b6) | 702 | (setq c #x24b6) |