diff options
| author | Kenichi Handa | 2009-02-04 02:02:27 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-02-04 02:02:27 +0000 |
| commit | e47fe93b1fd48294dd9e6c1080368216dc578e05 (patch) | |
| tree | 1b8c65ac7571d04cdf40f36e763fd29047d083a3 /lisp | |
| parent | 8da437855b51da955fae489c92c8e18773eb1890 (diff) | |
| download | emacs-e47fe93b1fd48294dd9e6c1080368216dc578e05.tar.gz emacs-e47fe93b1fd48294dd9e6c1080368216dc578e05.zip | |
(describe-char): Check font-object by fontp.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/descr-text.el | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ca787cfcd2d..944b55c47e7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2009-02-04 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * descr-text.el (describe-char): Check font-object by fontp. | ||
| 4 | |||
| 5 | * composite.el (compose-gstring-for-terminal): If a character is | ||
| 6 | not supported by the current terminal, don't make a multi-glyph | ||
| 7 | grapheme cluster. | ||
| 8 | (auto-compose-chars): Check font-object by fontp. | ||
| 9 | |||
| 1 | 2009-02-03 Glenn Morris <rgm@gnu.org> | 10 | 2009-02-03 Glenn Morris <rgm@gnu.org> |
| 2 | 11 | ||
| 3 | * mail/unrmail.el (unrmail): In the absence of Mail-from, prefer Date | 12 | * mail/unrmail.el (unrmail): In the absence of Mail-from, prefer Date |
diff --git a/lisp/descr-text.el b/lisp/descr-text.el index 96ef2458e42..89325cca22a 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el | |||
| @@ -630,7 +630,7 @@ as well as widgets, buttons, overlays, and text properties." | |||
| 630 | (nglyphs (lgstring-glyph-len gstring)) | 630 | (nglyphs (lgstring-glyph-len gstring)) |
| 631 | (i 0) | 631 | (i 0) |
| 632 | glyph) | 632 | glyph) |
| 633 | (if font | 633 | (if (fontp font) |
| 634 | (progn | 634 | (progn |
| 635 | (insert " using this font:\n " | 635 | (insert " using this font:\n " |
| 636 | (symbol-name (font-get font :type)) | 636 | (symbol-name (font-get font :type)) |