update packages

This commit is contained in:
2025-03-11 21:14:26 +01:00
parent 45d49daef0
commit 14dcaaddde
440 changed files with 13229 additions and 8718 deletions

View File

@@ -1,10 +1,10 @@
(define-package "helpful" "20250220.545" "A better *help* buffer"
(define-package "helpful" "20250227.1527" "A better *help* buffer"
'((emacs "25")
(dash "2.18.0")
(s "1.11.0")
(f "0.20.0")
(elisp-refs "1.2"))
:commit "5ad8a9ce57b6c076428286c3d25968b449ab6fd3" :authors
:commit "3794389ef685b6a59b3a487d0492c3add3c42c2f" :authors
'(("Wilfred Hughes" . "me@wilfred.me.uk"))
:maintainers
'(("Wilfred Hughes" . "me@wilfred.me.uk"))

View File

@@ -2570,7 +2570,9 @@ For example, \"(some-func FOO &optional BAR)\"."
(cond
((symbolp sym)
(help-function-arglist sym))
((byte-code-function-p sym)
((or (byte-code-function-p sym)
(if (fboundp 'interpreted-function-p)
(interpreted-function-p sym)))
;; argdesc can be a list of arguments or an integer
;; encoding the min/max number of arguments. See
;; Byte-Code Function Objects in the elisp manual.