aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2020-09-30 15:07:47 -0700
committerWilfred Hughes <me@wilfred.me.uk>2020-09-30 15:58:23 -0700
commitf4b838c1080174e05a9e5f8672c4510a6d8298dc (patch)
treef93dc93625e22383dcb8eaf2037f238d3ab0be90
parent27373703625fdf86fe0f71500767802a28350b9f (diff)
Cross-reference the different functions for callables
-rw-r--r--helpful.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/helpful.el b/helpful.el
index 322754f..da344fa 100644
--- a/helpful.el
+++ b/helpful.el
@@ -2554,7 +2554,9 @@ escapes that are used by `substitute-command-keys'."
;;;###autoload
(defun helpful-function (symbol)
- "Show help for function named SYMBOL."
+ "Show help for function named SYMBOL.
+
+See also `helpful-macro', `helpful-command' and `helpful-callable'."
(interactive
(list (helpful--read-symbol "Function: " #'functionp)))
(funcall helpful-switch-buffer-function (helpful--buffer symbol t))
@@ -2562,7 +2564,9 @@ escapes that are used by `substitute-command-keys'."
;;;###autoload
(defun helpful-command (symbol)
- "Show help for interactive function named SYMBOL."
+ "Show help for interactive function named SYMBOL.
+
+See also `helpful-function'."
(interactive
(list (helpful--read-symbol "Command: " #'commandp)))
(funcall helpful-switch-buffer-function (helpful--buffer symbol t))
@@ -2598,7 +2602,7 @@ escapes that are used by `substitute-command-keys'."
(defun helpful-callable (symbol)
"Show help for function, macro or special form named SYMBOL.
-See also `helpful-macro' and `helpful-function'."
+See also `helpful-macro', `helpful-function' and `helpful-command'."
(interactive
(list (helpful--read-symbol "Callable: " #'fboundp)))
(funcall helpful-switch-buffer-function (helpful--buffer symbol t))