From: Tomi Ollila Date: Thu, 19 Aug 2021 07:41:47 +0000 (+0300) Subject: news/release-0.32.mdwn retry... X-Git-Url: https://git.cworth.org/git?p=notmuch-wiki;a=commitdiff_plain;h=2736cb3000721a04e4a0e9a80e8761ea79a482b0 news/release-0.32.mdwn retry... --- diff --git a/news/release-0.32.mdwn b/news/release-0.32.mdwn index 678f291..357984e 100644 --- a/news/release-0.32.mdwn +++ b/news/release-0.32.mdwn @@ -65,16 +65,20 @@ Lexical binding is now used in all notmuch-emacs libraries. Fix bug in calling `notmuch-mua-mail` with a non-nil RETURN-ACTION. Removed, inlined or renamed functions and variables: -- `notmuch-address-locate-command`, -- `notmuch-documentation-first-line`, `notmuch-folder`, -- `notmuch-hello-trim', `notmuch-hello-versions` => `notmuch-version`, -- `notmuch-remove-if-not`, `notmuch-search-disjunctive-regexp`, -- `notmuch-sexp-eof`, `notmuch-split-content-type`, and -- `notmuch-tree-button-activate`. + + notmuch-address-locate-command, + notmuch-documentation-first-line, notmuch-folder, + notmuch-hello-trim, notmuch-hello-versions => notmuch-version, + notmuch-remove-if-not, notmuch-search-disjunctive-regexp, + 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)` + + (define-key 'notmuch-show-mode-map "7" 'foo) + you should change it to: -- `(define-key notmuch-show-mode-map "7" 'foo)` + + (define-key notmuch-show-mode-map "7" 'foo)