emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master dce85743b6: Make C-u M-x apropos-user-option include buttons


From: Lars Ingebrigtsen
Subject: master dce85743b6: Make C-u M-x apropos-user-option include buttons
Date: Wed, 11 May 2022 19:48:58 -0400 (EDT)

branch: master
commit dce85743b6856132a64709cd191951f9d190ce6e
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Make C-u M-x apropos-user-option include buttons
    
    * lisp/apropos.el (apropos-user-option): Include buttons in the
    output always (bug#55376).
    (apropos-print-doc): Don't insert three spaces in the
    non-apropos-multi-type case.
---
 lisp/apropos.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lisp/apropos.el b/lisp/apropos.el
index 28184476e6..c57ca37e68 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -518,7 +518,7 @@ variables, not just user options."
                      (if (or current-prefix-arg apropos-do-all)
                          "variable" "user option"))
                      current-prefix-arg))
-  (apropos-command pattern nil
+  (apropos-command pattern (or do-all apropos-do-all)
                   (if (or do-all apropos-do-all)
                        (lambda (symbol)
                          (and (boundp symbol)
@@ -1275,12 +1275,13 @@ as a heading."
   (let ((doc (nth i apropos-item)))
     (when (stringp doc)
       (if apropos-compact-layout
-         (insert (propertize "\t" 'display '(space :align-to 32)) " ")
-       (insert "  "))
+          (insert (propertize "\t" 'display '(space :align-to 32)))
+        (insert " "))
       (if apropos-multi-type
          (let ((button-face (button-type-get type 'face)))
            (unless (consp button-face)
              (setq button-face (list button-face)))
+            (insert " ")
            (insert-text-button
             (if apropos-compact-layout
                 (format "<%s>" (button-type-get type 'apropos-short-label))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]