diff options
Diffstat (limited to 'helpful.el')
| -rw-r--r-- | helpful.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -680,7 +680,7 @@ For example, \"(some-func FOO &optional BAR)\"." (defun helpful-function (symbol) "Show help for function named SYMBOL." (interactive - (list (helpful--read-symbol "Function:" #'functionp))) + (list (helpful--read-symbol "Function: " #'functionp))) (switch-to-buffer (helpful--buffer symbol t)) (helpful-update)) @@ -688,7 +688,7 @@ For example, \"(some-func FOO &optional BAR)\"." (defun helpful-command (symbol) "Show help for interactive function named SYMBOL." (interactive - (list (helpful--read-symbol "Command:" #'commandp))) + (list (helpful--read-symbol "Command: " #'commandp))) (switch-to-buffer (helpful--buffer symbol t)) (helpful-update)) @@ -696,7 +696,7 @@ For example, \"(some-func FOO &optional BAR)\"." (defun helpful-macro (symbol) "Show help for macro named SYMBOL." (interactive - (list (helpful--read-symbol "Macro:" #'macrop))) + (list (helpful--read-symbol "Macro: " #'macrop))) (switch-to-buffer (helpful--buffer symbol t)) (helpful-update)) @@ -712,7 +712,7 @@ For example, \"(some-func FOO &optional BAR)\"." (defun helpful-variable (symbol) "Show help for variable named SYMBOL." (interactive - (list (helpful--read-symbol "Variable:" #'helpful--variable-p))) + (list (helpful--read-symbol "Variable: " #'helpful--variable-p))) (switch-to-buffer (helpful--buffer symbol nil)) (helpful-update)) |
