aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2018-08-02 22:06:09 -0700
committerWilfred Hughes <me@wilfred.me.uk>2018-08-02 22:06:09 -0700
commitc4178fa7e1e4a5e098771e14c8731ff1b7a0d894 (patch)
tree6508fe1c85a317e921cd47c123d42cba02831f62
parent3a3a05f82db542523c44ebb6a9b0e5dec48906fa (diff)
Fix hard-coded symbol in helpful--keymaps-containing-aliases
-rw-r--r--helpful.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpful.el b/helpful.el
index 10b4cb0..f4be6d9 100644
--- a/helpful.el
+++ b/helpful.el
@@ -1336,7 +1336,7 @@ keybindings for COMMAND-SYM in each keymap.
Includes keybindings for aliases, unlike
`helpful--keymaps-containing'."
- (let* ((aliases (helpful--aliases 'helpful--dummy-command t))
+ (let* ((aliases (helpful--aliases command-sym t))
(syms (cons command-sym aliases))
(syms-keymaps (-map #'helpful--keymaps-containing syms)))
(-reduce #'helpful--merge-alists syms-keymaps)))