branch: externals/setup commit 572836931b2b41a35db871ff576df8875142ba89 Author: Philip K <phil...@posteo.net> Commit: Philip K <phil...@posteo.net>
Fix shell example in README and Commentary section --- README.md | 2 +- setup.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 77f0135..a97a7ff 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ example, these macros: ~~~elisp (setup shell - (let ((key "C-c s")) + (let ((key (kbd "C-c s"))) (:global key shell) (:bind key bury-buffer))) diff --git a/setup.el b/setup.el index b460486..779448a 100644 --- a/setup.el +++ b/setup.el @@ -28,7 +28,7 @@ ;; For example, these macros: ;; (setup shell -;; (let ((key "C-c s")) +;; (let ((key (kbd "C-c s"))) ;; (:global key shell) ;; (:bind key bury-buffer))) ;;