]> git.cworth.org Git - notmuch-wiki/commitdiff
news/release-0.32.mdwn retry...
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 19 Aug 2021 07:41:47 +0000 (10:41 +0300)
committerTomi Ollila <tomi.ollila@iki.fi>
Thu, 19 Aug 2021 07:41:47 +0000 (10:41 +0300)
news/release-0.32.mdwn

index 678f2918ae48af7161bc13edf876a47f71241ed5..357984e0a5e5f014769ee858747de2b2a8c99350 100644 (file)
@@ -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:
 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:
 
 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:
 you should change it to:
-- `(define-key notmuch-show-mode-map "7" 'foo)`
+
+    (define-key notmuch-show-mode-map "7" 'foo)