aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2017-12-30 10:58:25 +0000
committerWilfred Hughes <me@wilfred.me.uk>2017-12-30 10:58:25 +0000
commit4ec88fd125c2c3100d9aa9ed3191ca482c0ade2f (patch)
tree5b4d9f793fc4a34708dbabc0f817362836f9a6e8
parent59fb24dc969658f37e9464fc87200ed06a8b1ecc (diff)
Fix incorrect let nesting
-rw-r--r--helpful.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/helpful.el b/helpful.el
index b30030c..860749a 100644
--- a/helpful.el
+++ b/helpful.el
@@ -602,13 +602,13 @@ unescaping too."
(key-description
(if key
(key-description key)
- (format "M-x %s" symbol-name)))))
- (insert
- (helpful--button
- key-description
- 'helpful-describe-exactly-button
- 'symbol symbol
- 'callable-p t))))
+ (format "M-x %s" symbol-name))))
+ (insert
+ (helpful--button
+ key-description
+ 'helpful-describe-exactly-button
+ 'symbol symbol
+ 'callable-p t)))))
;; Don't modify other characters.
(t
(forward-char 1))))