Mercurial > hg > xemacs-beta
comparison lisp/disp-table.el @ 4454:1f0aa40cafe0
Small improvements in disp-table.el, mule/cyril-util.el.
2008-05-11 Aidan Kehoe <kehoea@parhasard.net>
* disp-table.el (make-display-table):
[...] Also, I previously said #xFF when I meant
?\xFF; correct this.
* mule/cyril-util.el (standard-display-cyrillic-translit):
Make the selection of the default language more sensible; change
the API a little to make a sensible default Cyrillic language
available, checking current-language-environment.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 11 May 2008 12:03:07 +0200 |
parents | 82f8351e71c8 |
children | b2dcf6a6d8ab e0db3c197671 |
comparison
equal
deleted
inserted
replaced
4453:29efd169efe7 | 4454:1f0aa40cafe0 |
---|---|
37 (defun make-display-table () | 37 (defun make-display-table () |
38 "Return a new, empty display table. | 38 "Return a new, empty display table. |
39 | 39 |
40 This returns a generic character table; previously it returned a vector, but | 40 This returns a generic character table; previously it returned a vector, but |
41 that was not helpful when dealing with internationalized characters above | 41 that was not helpful when dealing with internationalized characters above |
42 #xFF. See `make-char-table' for details of character tables in general. To | 42 ?\xFF. See `make-char-table' for details of character tables in general. To |
43 write code that works with both vectors and character tables, add something | 43 write code that works with both vectors and character tables, add something |
44 like the following to the beginning of your file, and use | 44 like the following to the beginning of your file, and use |
45 `put-display-table' to set what a given character is displayed as, and | 45 `put-display-table' to set what a given character is displayed as, and |
46 `get-display-table' to examine what that character is currently displayed | 46 `get-display-table' to examine what that character is currently displayed |
47 as: | 47 as: |