diff options
author | Basil L. Contovounesios <basil@contovou.net> | 2025-03-13 13:36:19 +0100 |
---|---|---|
committer | Basil L. Contovounesios <basil@contovou.net> | 2025-03-13 13:39:39 +0100 |
commit | 20ac26e6751664b08636d16e515abfa1b8419a2d (patch) | |
tree | 763e8fec2d4e4be34846835ddacba10493484380 /lisp/subr.el | |
parent | 04034cd9ce746e3914daa66add34c66ad2db032d (diff) | |
download | emacs-20ac26e6751664b08636d16e515abfa1b8419a2d.tar.gz emacs-20ac26e6751664b08636d16e515abfa1b8419a2d.tar.bz2 emacs-20ac26e6751664b08636d16e515abfa1b8419a2d.zip |
; Fix with-delayed-message docstring metavars.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 42706397674..87a06575de7 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -7343,7 +7343,7 @@ not a list, return a one-element list containing OBJECT." The MESSAGE form will be evaluated immediately, but the resulting string will be displayed only if BODY takes longer than TIMEOUT seconds. -\(fn (timeout message) &rest body)" +\(fn (TIMEOUT MESSAGE) &rest BODY)" (declare (indent 1)) `(funcall-with-delayed-message ,(car args) ,(cadr args) (lambda () |