From 79533a18c4a134806150ce5a0e45d0ad55238584 Mon Sep 17 00:00:00 2001 From: Nikita Bloshchanevich Date: Sun, 14 Mar 2021 13:12:13 +0100 Subject: Keyboard macros: fix space before "." --- helpful.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helpful.el b/helpful.el index 723746c..00efa00 100644 --- a/helpful.el +++ b/helpful.el @@ -1956,13 +1956,13 @@ OBJ may be a symbol or a compiled function object." (helpful--buffer-button buf pos))))) (primitive-p "defined in C source code") - ((helpful--kbd-macro-p sym) "") + ((helpful--kbd-macro-p sym) nil) (t "without a source file")))) (s-word-wrap 70 - (format "%s is %s %s %s %s." + (format "%s is %s %s %s%s." (if (symbolp sym) (helpful--format-symbol sym) "This lambda") @@ -1973,7 +1973,7 @@ OBJ may be a symbol or a compiled function object." "a") description kind - defined)))) + (if defined (concat " " defined) ""))))) (defun helpful--callees (form) "Given source code FORM, return a list of all the functions called." -- cgit v1.0