From b0efe06551bfed447328c11d6711ffd9fc63dfe4 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 30 Aug 2025 11:24:51 +0300 Subject: [PATCH] ; * lisp/ehelp.el (ehelp-command): Fix the autoload form (bug#79289). --- lisp/ehelp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ehelp.el b/lisp/ehelp.el index ed86f663100..611aa712628 100644 --- a/lisp/ehelp.el +++ b/lisp/ehelp.el @@ -433,7 +433,7 @@ will select it.)" (substitute-key-definition 'describe-syntax 'electric-describe-syntax map) map)) -;;;###(autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap) +;;;###autoload (autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap) (defalias 'ehelp-command ehelp-map) (put 'ehelp-command 'documentation "Prefix command for ehelp.")