diff options
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/international/mule-diag.el | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2fc1351434d..40fd69bd08e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2008-05-22 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * international/mule-diag.el (font-show-log): New function. | ||
| 4 | |||
| 5 | * international/fontset.el (script-representative-chars): Add more | ||
| 6 | chars for latin. Add data for symbol. | ||
| 7 | (setup-default-fontset): Add entries for phonetic, armenian, and | ||
| 8 | symbol. | ||
| 9 | |||
| 1 | 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca> | 10 | 2008-05-21 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 11 | ||
| 3 | * minibuffer.el (completion-all-sorted-completions): New var. | 12 | * minibuffer.el (completion-all-sorted-completions): New var. |
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 8aa038a7adf..4f837743088 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -1293,6 +1293,21 @@ character)") | |||
| 1293 | (string (string-to-number | 1293 | (string (string-to-number |
| 1294 | (nth 13 fields) 16))))))))))) | 1294 | (nth 13 fields) 16))))))))))) |
| 1295 | 1295 | ||
| 1296 | ;;;###autoload | ||
| 1297 | (defun font-show-log () | ||
| 1298 | (interactive) | ||
| 1299 | (if (eq font-log t) | ||
| 1300 | (message "Font logging is currently suppressed") | ||
| 1301 | (with-output-to-temp-buffer "*Help*" | ||
| 1302 | (set-buffer standard-output) | ||
| 1303 | (dolist (elt (reverse font-log)) | ||
| 1304 | (insert (format "%s: %s\n" (car elt) (cadr elt))) | ||
| 1305 | (setq elt (nth 2 elt)) | ||
| 1306 | (if (or (vectorp elt) (listp elt)) | ||
| 1307 | (mapc #'(lambda (x) (insert (format " %s\n" x))) elt) | ||
| 1308 | (insert (format " %s\n" elt))))))) | ||
| 1309 | |||
| 1310 | |||
| 1296 | (provide 'mule-diag) | 1311 | (provide 'mule-diag) |
| 1297 | 1312 | ||
| 1298 | ;; arch-tag: cd3b607c-2893-45a0-a4fa-a6535754dbee | 1313 | ;; arch-tag: cd3b607c-2893-45a0-a4fa-a6535754dbee |