mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
emacs: Fix "not defined at runtime" warning
Previously, the Emacs byte compiler produced the warning the function `remove-if-not' might not be defined at runtime. because we only required cl at compile-time (not runtime). This fixes this warning by requiring cl at runtime, ensuring that the definition of remove-if-not is available.
This commit is contained in:
parent
6b820673fc
commit
07b5f97202
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
||||||
(require 'mm-view)
|
(require 'mm-view)
|
||||||
(require 'mm-decode)
|
(require 'mm-decode)
|
||||||
(require 'json)
|
(require 'json)
|
||||||
(eval-when-compile (require 'cl))
|
(require 'cl)
|
||||||
|
|
||||||
(defvar notmuch-command "notmuch"
|
(defvar notmuch-command "notmuch"
|
||||||
"Command to run the notmuch binary.")
|
"Command to run the notmuch binary.")
|
||||||
|
|
Loading…
Reference in a new issue