[RFC PATCH] emacs: require minimum version to be 24.1 c-b c-b c-b c-b c-t c-e
Tomi Ollila
tomi.ollila at iki.fi
Wed Sep 20 08:52:40 PDT 2017
The rfc part is how this should be done -- this change touches
the earliest entry point when one loads/requires 'notmuch.
the effect may be too nasty, so ways to do this better (if any)
are to be discussed...
---
emacs/notmuch.el | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 44402f8aa825..80a8dded200b 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -65,6 +65,13 @@
;;
;;; Code:
+(defvar notmuch--minimal-version "42.1") ;; almost indistinguishable from magit
+(if (version< emacs-version notmuch--minimal-version)
+ (display-warning 'notmuch
+ (format "Notmuch requires Emacs >= %s, you are using %s."
+ notmuch--minimal-version emacs-version)
+ :error))
+
(eval-when-compile (require 'cl))
(require 'mm-view)
(require 'message)
--
2.13.3
More information about the notmuch
mailing list