12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- (if (string-match "^22\." emacs-version)
- (progn
- (utf-translate-cjk-mode t)
- (utf-translate-cjk-set-unicode-range
- '((#x00a2 . #x00a3) ; ¢, £
- (#x00a7 . #x00a8) ; §, ¨
- (#x00ac . #x00ac) ; ¬
- (#x00b0 . #x00b1) ; °, ±
- (#x00b4 . #x00b4) ; ´
- (#x00b6 . #x00b6) ; ¶
- (#x00d7 . #x00d7) ; ×
- (#X00f7 . #x00f7) ; ÷
- (#x0370 . #x03ff) ; Greek and Coptic
- (#x0400 . #x04FF) ; Cyrillic
- (#x2000 . #x206F) ; General Punctuation
- (#x2100 . #x214F) ; Letterlike Symbols
- (#x2190 . #x21FF) ; Arrows
- (#x2200 . #x22FF) ; Mathematical Operators
- (#x2300 . #x23FF) ; Miscellaneous Technical
- (#x2500 . #x257F) ; Box Drawing
- (#x25A0 . #x25FF) ; Geometric Shapes
- (#x2600 . #x26FF) ; Miscellaneous Symbols
- (#x2e80 . #xd7a3) (#xff00 . #xffef)))
- )
- )
- (provide 'vine-default-faces)
|