diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-10 15:12:21 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-10 15:12:21 +0100 |
commit | 8b3a5dd807b363700b995b42aa43c93a4089c19e (patch) | |
tree | 5b48b6df96b071fd57e428a8c7c401db21e022bb /lisp | |
parent | 742414c5c08e4b11e34ec5b231f622fb6cfffd8a (diff) |
notifs-get: force set kmap in buffer
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 271e772..04773c7 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -294,7 +294,8 @@ BUFFER-NAME is added to \"*mastodon-\" to create the buffer name." "notifications" 'mastodon-notifications--timeline type) - (use-local-map mastodon-notifications--map)))) + (with-current-buffer buffer + (use-local-map mastodon-notifications--map))))) ;; URL lookup: should be available even if `mastodon.el' not loaded: |