From 12e206a3f15ac5ad005e87a9d1f1ffdf80fbba89 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 29 Aug 2017 16:33:52 +0200 Subject: Add missing space at end of prompts --- helpful.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpful.el b/helpful.el index efeca67..dac3b1c 100644 --- a/helpful.el +++ b/helpful.el @@ -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)) -- cgit v1.0