diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2020-09-30 15:07:47 -0700 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2020-09-30 15:58:23 -0700 |
| commit | f4b838c1080174e05a9e5f8672c4510a6d8298dc (patch) | |
| tree | f93dc93625e22383dcb8eaf2037f238d3ab0be90 | |
| parent | 27373703625fdf86fe0f71500767802a28350b9f (diff) | |
Cross-reference the different functions for callables
| -rw-r--r-- | helpful.el | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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)) |
