diff options
| author | Thanos Apollo <public@thanosapollo.org> | 2026-05-03 03:04:29 +0300 |
|---|---|---|
| committer | Thanos Apollo <public@thanosapollo.org> | 2026-05-03 03:04:29 +0300 |
| commit | 9bad1d92e574785ce5012dee280881f662db5cbd (patch) | |
| tree | 8ef67fbdb473e51d7cd8ff65873a1898b2d73589 | |
| parent | 6a07ac36ab4b26896ad08e1b3109518d447edbe1 (diff) | |
entry-command: use plain lambda for lexical capture
| -rw-r--r-- | keymap-popup.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keymap-popup.el b/keymap-popup.el index 639525a..52cf291 100644 --- a/keymap-popup.el +++ b/keymap-popup.el @@ -252,7 +252,7 @@ Each row is a list of group plists with :name and :entries." ('suffix (plist-get entry :command)) ('switch (intern (format "%s--toggle-%s" map-name (plist-get entry :variable)))) ('keymap (let ((target (plist-get entry :target))) - `(lambda () (interactive) (keymap-popup ,target)))))) + (lambda () (interactive) (keymap-popup target)))))) ;;; Macro helpers |
