~brsvh

https://brsvh.org

~brsvh/inbox

Last active 2 years ago
View more

Recent activity

setup.el: How to inhibit byte compilation errors about require file include customized keyword 7 months ago

From Burgess Chang to ~pkal/public-inbox

Hi,

I try to use setup.el to define a keyword that is a simple customized
wrapper of `keymap-set'.

~/foo.el:

```emacs-lisp
(require 'setup)

(setup-define :keymap-set
  (lambda (key definition)
    `(keymap-set ,(setup-get 'map) ,key ,definition))