diff options
| author | Nikita Bloshchanevich <nikblos@outlook.com> | 2021-03-14 13:12:13 +0100 |
|---|---|---|
| committer | Nikita Bloshchanevich <nikblos@outlook.com> | 2021-03-14 14:12:08 +0100 |
| commit | 79533a18c4a134806150ce5a0e45d0ad55238584 (patch) | |
| tree | 038b33d34264ec2be37ca399333389340093a675 | |
| parent | 88e53d3267e8168e056e96989e9cc8fb50d33c50 (diff) | |
Keyboard macros: fix space before "."
| -rw-r--r-- | helpful.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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." |
