]> git.notmuchmail.org Git - notmuch/commitdiff
NEWS/emacs: document changes in 0.32 that affect keybindings.
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Thu, 27 May 2021 16:58:37 +0000 (12:58 -0400)
committerDavid Bremner <david@tethera.net>
Mon, 31 May 2021 23:25:23 +0000 (20:25 -0300)
See list discussion in thread starting with
id:87h7ip2baq.fsf@fifthhorseman.net for more details.

Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Amended-by: David Bremner (s/.emacs/Emacs configuration/)
NEWS

diff --git a/NEWS b/NEWS
index e1fa2d73ae027c8e2dfa666b3dcbde5be789ca5a..4bb4779e6ec49e7bd8b1f4041bc41f2300822978 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -93,6 +93,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)
 ===========================