aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2021-05-31 20:26:31 -0300
committerDavid Bremner <david@tethera.net>2021-05-31 20:26:31 -0300
commit100106a45d9f362ed8770c95cf35bd43f6580511 (patch)
treeaf925a2ea7196f7c68d6f6f904cbef544098b30e
parent85ae2bcf56021a22a803fbde34baa5050bbb28d9 (diff)
parent0478c0e077a697caeaa2f99678f69b57e6975b6e (diff)
Merge remote-tracking branch 'origin/release'
-rw-r--r--NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c0ae6afe..35b57cef 100644
--- a/NEWS
+++ b/NEWS
@@ -101,6 +101,13 @@ Removed, inlined or renamed functions and variables:
`notmuch-sexp-eof`, `notmuch-split-content-type`, and
`notmuch-tree-button-activate`.
+Keymaps are no longer fset, which means they need to be referred to in
+define-key directly (without quotes). If your Emacs configuration has a
+keybinding like:
+ (define-key 'notmuch-show-mode-map "7" 'foo)
+you should change it to:
+ (define-key notmuch-show-mode-map "7" 'foo)
+
Notmuch 0.31.4 (2021-02-18)
===========================