* lisp/help.el (help--describe-command): Don't create links to
commands that aren't defined.
(defun help--describe-command (definition &optional translation)
(cond ((symbolp definition)
- (insert-text-button (symbol-name definition)
- 'type 'help-function
- 'help-args (list definition))
+ (if (fboundp definition)
+ (insert-text-button (symbol-name definition)
+ 'type 'help-function
+ 'help-args (list definition))
+ (insert (symbol-name definition)))
(insert "\n"))
((or (stringp definition) (vectorp definition))
(if translation