diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2018-08-02 22:06:09 -0700 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2018-08-02 22:06:09 -0700 |
| commit | c4178fa7e1e4a5e098771e14c8731ff1b7a0d894 (patch) | |
| tree | 6508fe1c85a317e921cd47c123d42cba02831f62 | |
| parent | 3a3a05f82db542523c44ebb6a9b0e5dec48906fa (diff) | |
Fix hard-coded symbol in helpful--keymaps-containing-aliases
| -rw-r--r-- | helpful.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))) |
