]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-show-log): Add optional arg N to control the limit of font
authorKenichi Handa <handa@m17n.org>
Mon, 18 Aug 2008 12:04:35 +0000 (12:04 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 18 Aug 2008 12:04:35 +0000 (12:04 +0000)
listing.

lisp/ChangeLog
lisp/international/mule-diag.el

index 517e6e71d10f72afa339bef1825dac527a40857b..e82856405415b211d6b9f1b3e6682f385b0f0800 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-18  Kenichi Handa  <handa@m17n.org>
+
+       * international/mule-diag.el (font-show-log): Add optional arg N
+       to control the limit of font listing.
+
 2008-08-18  Chong Yidong  <cyd@stupidchicken.com>
 
        * window.el (recenter-top-bottom): Determine top and bottom
index 9357184634557ad98850fdcc53cd10dadff30e6f..720201b4f1ba971951de9947535e3184edac36c7 100644 (file)
@@ -1299,9 +1299,11 @@ character)")
                                               (nth 13 fields) 16)))))))))))
 
 ;;;###autoload
-(defun font-show-log ()
-  "Show log of font listing and opening."
-  (interactive)
+(defun font-show-log (&optional n)
+  "Show log of font listing and opening.
+Prefix arg N says how many fonts to show for each listing.
+The default is 20.  If N is negative, do not limit the listing."
+  (interactive "p")
   (if (eq font-log t)
       (message "Font logging is currently suppressed")
     (with-output-to-temp-buffer "*Help*"
@@ -1310,12 +1312,11 @@ character)")
        (insert (format "%s: %s\n" (car elt) (cadr elt)))
        (setq elt (nth 2 elt))
        (if (or (vectorp elt) (listp elt))
-           (let ((limit 20)
-                 (i 0))
+           (let ((i 0))
              (catch 'tag
                (mapc #'(lambda (x)
                          (setq i (1+ i))
-                         (when (= i 20)
+                         (when (= i n)
                            (insert "  ...\n")
                            (throw 'tag nil))
                          (insert (format "  %s\n" x)))