]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some compat code from descr-text.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 21:23:42 +0000 (23:23 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 21:23:42 +0000 (23:23 +0200)
* lisp/descr-text.el (describe-text-properties-1): button.el is
pre-loaded, so remove check for it.

lisp/descr-text.el

index 55f0b7dcb406c4cc5291fd774c4c759e71663299..d6da42806305d47129b8da4888b377515dbcfc90 100644 (file)
@@ -141,8 +141,7 @@ otherwise."
         (wid-field (get-char-property pos 'field))
         (wid-button (get-char-property pos 'button))
         (wid-doc (get-char-property pos 'widget-doc))
-        ;; If button.el is not loaded, we have no buttons in the text.
-        (button (and (fboundp 'button-at) (button-at pos)))
+        (button (button-at pos))
         (button-type (and button (button-type button)))
         (button-label (and button (button-label button)))
         (widget (or wid-field wid-button wid-doc)))