Fix guide-key breakage

1958678754 (0.26.0) introduced a customisable variable
`dotspacemacs-leader-key`. Hardcoded instances of the leader were
replaced by references to this variable. An error in this refactoring
has broken guide-key.

This change fixes a bug where the variable name was added to a quoted
list, inserting the symbol and not the variable's value.

After this change, guide-key should display again.
This commit is contained in:
Chris Barrett 2014-12-08 00:25:44 +13:00
parent 482afcbc17
commit a9e123611e

View file

@ -1120,9 +1120,9 @@ determine the state to enable when escaping from the insert state.")
(guide-key-mode -1)
(guide-key-mode)))
(evil-leader/set-key "tG" 'spacemacs/toggle-guide-key)
(setq guide-key/guide-key-sequence '("C-x"
(setq guide-key/guide-key-sequence `("C-x"
"C-c"
dotspacemacs-leader-key
,dotspacemacs-leader-key
"g"
"z"
"C-h")