1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Subject: Work for Emacs 27 and greater
Origin: upstream, http://cvs.namazu.org/Development/emacs-w3m/aclocal.m4?r1=1.44&r2=1.45
diff --git a/ChangeLog b/ChangeLog
index 3662e5f2..188acb1d 100644
@@ -0,0 +1,4 @@
+2017-09-26 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * aclocal.m4 (AC_PATH_EMACS): Work for Emacs 27 and greater.
+
diff --git a/aclocal.m4 b/aclocal.m4
index ce49462f..cb8d7372 100644
@@ -91,7 +91,7 @@ AC_DEFUN(AC_PATH_EMACS,
case "${flavor}" in
XEmacs)
EMACS_FLAVOR=xemacs;;
- Emacs\ 2[[123456]]\.*)
+ Emacs\ 2[[1-9]]\.*)
EMACS_FLAVOR=emacs;;
*)
EMACS_FLAVOR=unsupported;;
|