diff options
| author | David Bremner <david@tethera.net> | 2021-06-08 20:12:33 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-06-08 20:12:33 -0300 |
| commit | dda50ede050caa8aef5dda68d41b30b6c213c67d (patch) | |
| tree | 8eb80484a5b7801c08bbe2182807e5fc9541bb1b | |
| parent | a19d2b0d2b8c666d0a3641dc2e7e1b4e73b7c2bd (diff) | |
emacs: require seq for seq-some
Although the function dates from 2015, the autoload is newer. In
particular [1] it is not found in Emacs 25.3.
[1]: id:874ke85tqx.fsf@cgc-instruments.com
| -rw-r--r-- | emacs/notmuch-maildir-fcc.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/notmuch-maildir-fcc.el b/emacs/notmuch-maildir-fcc.el index ae8f5140..c715532b 100644 --- a/emacs/notmuch-maildir-fcc.el +++ b/emacs/notmuch-maildir-fcc.el @@ -21,6 +21,8 @@ ;;; Code: +(require 'seq) + (require 'message) (require 'notmuch-lib) |
