diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-30 10:58:25 +0000 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-30 10:58:25 +0000 |
| commit | 4ec88fd125c2c3100d9aa9ed3191ca482c0ade2f (patch) | |
| tree | 5b4d9f793fc4a34708dbabc0f817362836f9a6e8 | |
| parent | 59fb24dc969658f37e9464fc87200ed06a8b1ecc (diff) | |
Fix incorrect let nesting
| -rw-r--r-- | helpful.el | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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)))) |
