]> git.eshelyaron.com Git - emacs.git/commitdiff
Use help-mode xrefs in describe-font
authorAlexander Gramiak <agrambot@gmail.com>
Sat, 5 Aug 2017 22:09:54 +0000 (16:09 -0600)
committerNoam Postavsky <npostavs@gmail.com>
Tue, 8 Aug 2017 23:57:24 +0000 (19:57 -0400)
* lisp/international/mule-diag.el (describe-font): Use help-setup-xref
(Bug#27890).

lisp/international/mule-diag.el

index c274621f772e3f669d6f01d5308ec008b99dfb0f..655a5ca6d4de703be0815ac29b754efc99bcf521 100644 (file)
@@ -838,7 +838,8 @@ The font must be already used by Emacs."
   (interactive "sFont name (default current choice for ASCII chars): ")
   (or (and window-system (fboundp 'fontset-list))
       (error "No fonts being used"))
-  (let (font-info)
+  (let ((xref-item (list #'describe-font fontname))
+        font-info)
     (if (or (not fontname) (= (length fontname) 0))
        (setq fontname (face-attribute 'default :font)))
     (setq font-info (font-info fontname))
@@ -850,6 +851,7 @@ The font must be already used by Emacs."
            ;; this problem.
            (message "No information about \"%s\"" (font-xlfd-name fontname))
          (message "No matching font found"))
+      (help-setup-xref xref-item (called-interactively-p 'interactive))
       (with-output-to-temp-buffer "*Help*"
        (describe-font-internal font-info)))))