mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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.
This commit is contained in:
parent
9ca1f945d9
commit
f3d6fa2e40
4 changed files with 4 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(require 'pcase)
|
(require 'pcase)
|
||||||
|
(require 'subr-x)
|
||||||
|
|
||||||
(require 'notmuch-maildir-fcc)
|
(require 'notmuch-maildir-fcc)
|
||||||
(require 'notmuch-tag)
|
(require 'notmuch-tag)
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(require 'pcase)
|
(require 'pcase)
|
||||||
|
(require 'subr-x)
|
||||||
|
|
||||||
(require 'mm-util)
|
(require 'mm-util)
|
||||||
(require 'mm-view)
|
(require 'mm-view)
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(require 'pcase)
|
(require 'pcase)
|
||||||
|
(require 'subr-x)
|
||||||
|
|
||||||
(require 'message)
|
(require 'message)
|
||||||
(require 'notmuch-tag)
|
(require 'notmuch-tag)
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(require 'pcase)
|
(require 'pcase)
|
||||||
|
(require 'subr-x)
|
||||||
|
|
||||||
(defun notmuch-sexp-create-parser ()
|
(defun notmuch-sexp-create-parser ()
|
||||||
"Return a new streaming S-expression parser.
|
"Return a new streaming S-expression parser.
|
||||||
|
|
Loading…
Reference in a new issue