aboutsummaryrefslogtreecommitdiff
path: root/emacs/notmuch-lib.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2021-01-10 15:01:08 +0100
committerDavid Bremner <david@tethera.net>2021-01-15 06:47:10 -0400
commitf3d6fa2e40c45c3dbaef768e36f1544248851ddb (patch)
tree4b4e28a2a88282d8e249206f7b728aa21fed0c08 /emacs/notmuch-lib.el
parent9ca1f945d9f5030600dc14ffff10d4dad14db4ca (diff)
emacs: make subr-x available in all libraries
Like `cl-lib' and `pcase', which are already available in all libraries, `subr-x' also provided many useful functions that we would like to use. Making `subr-x' available in every library from the get-go means that we can use the functions it defines without having to double check every single time, whether the feature is already available in the current library.
Diffstat (limited to 'emacs/notmuch-lib.el')
-rw-r--r--emacs/notmuch-lib.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 6130309a..05d3be10 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -23,6 +23,7 @@
(require 'cl-lib)
(require 'pcase)
+(require 'subr-x)
(require 'mm-util)
(require 'mm-view)