diff options
| author | Chong Yidong | 2009-04-11 14:44:16 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-11 14:44:16 +0000 |
| commit | 9291a2d6ae06ca63cf8b17bc124b5dccd0f0b3ab (patch) | |
| tree | 52859edd0d406a410480eed0234306782a4802af | |
| parent | b20ecfa1c43a79be4ca6f33b63c2b3656e41f4b3 (diff) | |
| download | emacs-9291a2d6ae06ca63cf8b17bc124b5dccd0f0b3ab.tar.gz emacs-9291a2d6ae06ca63cf8b17bc124b5dccd0f0b3ab.zip | |
* international/mule-diag.el (describe-font-internal): Change
ignored argument to IGNORED.
(describe-font): Elide unnecessary argument to
describe-font-internal (Bug#2945).
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/international/mule-diag.el | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fc90de2b4ff..1162741502d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-04-11 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * international/mule-diag.el (describe-font-internal): Change | ||
| 4 | ignored argument to IGNORED. | ||
| 5 | (describe-font): Elide unnecessary argument to | ||
| 6 | describe-font-internal (Bug#2945). | ||
| 7 | |||
| 1 | 2009-04-10 Richard M Stallman <rms@gnu.org> | 8 | 2009-04-10 Richard M Stallman <rms@gnu.org> |
| 2 | 9 | ||
| 3 | * mail/rmailedit.el (rmail-cease-edit): Call rmail-modify-format. | 10 | * mail/rmailedit.el (rmail-cease-edit): Call rmail-modify-format. |
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index bc8ffbb7824..cf979c60bcb 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -810,8 +810,9 @@ but still contains full information about each coding system." | |||
| 810 | 810 | ||
| 811 | (declare-function font-info "font.c" (name &optional frame)) | 811 | (declare-function font-info "font.c" (name &optional frame)) |
| 812 | 812 | ||
| 813 | (defun describe-font-internal (font-info &optional verbose) | 813 | (defun describe-font-internal (font-info &optional ignored) |
| 814 | "Print information about a font in FONT-INFO." | 814 | "Print information about a font in FONT-INFO. |
| 815 | The IGNORED argument is ignored." | ||
| 815 | (print-list "name (opened by):" (aref font-info 0)) | 816 | (print-list "name (opened by):" (aref font-info 0)) |
| 816 | (print-list " full name:" (aref font-info 1)) | 817 | (print-list " full name:" (aref font-info 1)) |
| 817 | (print-list " size:" (format "%2d" (aref font-info 2))) | 818 | (print-list " size:" (format "%2d" (aref font-info 2))) |
| @@ -839,7 +840,7 @@ The font must be already used by Emacs." | |||
| 839 | (message "No information about \"%s\"" (font-xlfd-name fontname)) | 840 | (message "No information about \"%s\"" (font-xlfd-name fontname)) |
| 840 | (message "No matching font found")) | 841 | (message "No matching font found")) |
| 841 | (with-output-to-temp-buffer "*Help*" | 842 | (with-output-to-temp-buffer "*Help*" |
| 842 | (describe-font-internal font-info 'verbose))))) | 843 | (describe-font-internal font-info))))) |
| 843 | 844 | ||
| 844 | (defun print-fontset-element (val) | 845 | (defun print-fontset-element (val) |
| 845 | ;; VAL has this format: | 846 | ;; VAL has this format: |