aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-08-30 11:24:51 +0300
committerEli Zaretskii2025-08-30 11:24:51 +0300
commitb0efe06551bfed447328c11d6711ffd9fc63dfe4 (patch)
treea62e6932cc2d30249b3e2286f712f2c866eeaf27
parentb85f9d6a97eb379bd7a461bc1b3499846eb1d933 (diff)
downloademacs-b0efe06551bfed447328c11d6711ffd9fc63dfe4.tar.gz
emacs-b0efe06551bfed447328c11d6711ffd9fc63dfe4.zip
; * lisp/ehelp.el (ehelp-command): Fix the autoload form (bug#79289).
-rw-r--r--lisp/ehelp.el2
1 files changed, 1 insertions, 1 deletions
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.)"
433 (substitute-key-definition 'describe-syntax 'electric-describe-syntax map) 433 (substitute-key-definition 'describe-syntax 'electric-describe-syntax map)
434 map)) 434 map))
435 435
436;;;###(autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap) 436;;;###autoload (autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap)
437(defalias 'ehelp-command ehelp-map) 437(defalias 'ehelp-command ehelp-map)
438(put 'ehelp-command 'documentation "Prefix command for ehelp.") 438(put 'ehelp-command 'documentation "Prefix command for ehelp.")
439 439