diff options
| author | Kenichi Handa | 1997-07-07 00:53:02 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-07-07 00:53:02 +0000 |
| commit | 22bdf5d145134b0d31bcc46cc815204f1804404b (patch) | |
| tree | 4e9df67f42b7c316e4945db9eb65cd303a786b43 | |
| parent | 776143e6de3836dfa7c078fbf3db4a7548040234 (diff) | |
| download | emacs-22bdf5d145134b0d31bcc46cc815204f1804404b.tar.gz emacs-22bdf5d145134b0d31bcc46cc815204f1804404b.zip | |
(print-fontset): Output format tuned.
(describe-fontset): Likewise.
(list-fontsets): Likewise.
| -rw-r--r-- | lisp/international/mule-diag.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index b7b3083d0ee..e7600df4af9 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -539,9 +539,9 @@ but contains full information about each coding systems." | |||
| 539 | (setq style (concat style "reverse slant")))) | 539 | (setq style (concat style "reverse slant")))) |
| 540 | (beginning-of-line) | 540 | (beginning-of-line) |
| 541 | (insert fontset) | 541 | (insert fontset) |
| 542 | (indent-to 56) | 542 | (indent-to 58) |
| 543 | (insert (if (> size 0) (format "%dx%d" size height) " ?")) | 543 | (insert (if (> size 0) (format "%dx%d" size height) " ?")) |
| 544 | (indent-to 62) | 544 | (indent-to 64) |
| 545 | (insert style "\n") | 545 | (insert style "\n") |
| 546 | (when print-fonts | 546 | (when print-fonts |
| 547 | (insert " O Charset / Fontname\n" | 547 | (insert " O Charset / Fontname\n" |
| @@ -575,10 +575,10 @@ in the fontset). The letter `?' in this column means that the | |||
| 575 | corresponding fontset is not yet used in any frame. | 575 | corresponding fontset is not yet used in any frame. |
| 576 | 576 | ||
| 577 | The O column of each font contains one of the following letters. | 577 | The O column of each font contains one of the following letters. |
| 578 | o -- the font already opened | 578 | o -- font already opened |
| 579 | - -- the font not yet opened | 579 | - -- font not yet opened |
| 580 | x -- the font can't be opened | 580 | x -- font can't be opened |
| 581 | ? -- no font specified in FONTSET | 581 | ? -- no font specified |
| 582 | 582 | ||
| 583 | The Charset column of each font contains a name of character set | 583 | The Charset column of each font contains a name of character set |
| 584 | displayed by the font." | 584 | displayed by the font." |
| @@ -598,8 +598,8 @@ displayed by the font." | |||
| 598 | (with-output-to-temp-buffer "*Help*" | 598 | (with-output-to-temp-buffer "*Help*" |
| 599 | (save-excursion | 599 | (save-excursion |
| 600 | (set-buffer standard-output) | 600 | (set-buffer standard-output) |
| 601 | (insert "Fontset-Name\t\t\t\t\t\tSize Style\n") | 601 | (insert "Fontset-Name\t\t\t\t\t\t Size Style\n") |
| 602 | (insert "------------\t\t\t\t\t\t---- -----\n") | 602 | (insert "------------\t\t\t\t\t\t ---- -----\n") |
| 603 | (print-fontset fontset t))))) | 603 | (print-fontset fontset t))))) |
| 604 | 604 | ||
| 605 | ;;;###autoload | 605 | ;;;###autoload |
| @@ -619,8 +619,8 @@ See the function `describe-fontset' for the format of the list." | |||
| 619 | (with-output-to-temp-buffer "*Help*" | 619 | (with-output-to-temp-buffer "*Help*" |
| 620 | (save-excursion | 620 | (save-excursion |
| 621 | (set-buffer standard-output) | 621 | (set-buffer standard-output) |
| 622 | (insert "Fontset-Name\t\t\t\t\t\tSize Style\n") | 622 | (insert "Fontset-Name\t\t\t\t\t\t Size Style\n") |
| 623 | (insert "------------\t\t\t\t\t\t---- -----\n") | 623 | (insert "------------\t\t\t\t\t\t ---- -----\n") |
| 624 | (let ((fontsets (fontset-list))) | 624 | (let ((fontsets (fontset-list))) |
| 625 | (while fontsets | 625 | (while fontsets |
| 626 | (print-fontset (car fontsets) arg) | 626 | (print-fontset (car fontsets) arg) |