diff options
| author | David Bremner <david@tethera.net> | 2021-05-31 20:26:31 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-05-31 20:26:31 -0300 |
| commit | 100106a45d9f362ed8770c95cf35bd43f6580511 (patch) | |
| tree | af925a2ea7196f7c68d6f6f904cbef544098b30e | |
| parent | 85ae2bcf56021a22a803fbde34baa5050bbb28d9 (diff) | |
| parent | 0478c0e077a697caeaa2f99678f69b57e6975b6e (diff) | |
Merge remote-tracking branch 'origin/release'
| -rw-r--r-- | NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) =========================== |
