diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2017-08-30 00:20:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-30 00:20:37 +0100 |
| commit | 4b2c3f4e7a9fb41fe424fe89e46580d5f7751d69 (patch) | |
| tree | 3e3419c1112ac98207b123a10dbd2167791692e2 | |
| parent | 73436111c0db6d8eedabc7fb4752ba7a4a7039b1 (diff) | |
| parent | 12e206a3f15ac5ad005e87a9d1f1ffdf80fbba89 (diff) | |
Merge pull request #11 from DamienCassou/add-missing-space-to-prompt
Add missing space at end of prompts
| -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)) |
