[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] [elpa] externals/auctex 62f8341717 03/14: Lift required G
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] [elpa] externals/auctex 62f8341717 03/14: Lift required GNU Emacs version to 25.1 |
Date: |
Sat, 16 Apr 2022 04:28:42 -0400 (EDT) |
branch: externals/auctex
commit 62f8341717e71679072d6dd4f53b58302c25e104
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@gnu.org>
Lift required GNU Emacs version to 25.1
* auctex.el.in:
* configure.ac (EMACS_CHECK_VERSION):
* doc/changes.texi:
* doc/faq.texi:
* doc/install.texi (Prerequisites):
* doc/preview-faq.texi (Requirements):
* tex-site.el.in:
* tex.el: Bump minimum required Emacs version to 25.1.
---
auctex.el.in | 4 ++--
configure.ac | 4 ++--
doc/changes.texi | 3 +++
doc/faq.texi | 2 +-
doc/install.texi | 2 +-
doc/preview-faq.texi | 2 +-
tex-site.el.in | 6 ++----
tex.el | 6 ++----
8 files changed, 14 insertions(+), 15 deletions(-)
diff --git a/auctex.el.in b/auctex.el.in
index 014c0a2b8a..61527e2393 100644
--- a/auctex.el.in
+++ b/auctex.el.in
@@ -1,11 +1,11 @@
;;; auctex.el --- Integrated environment for *TeX* -*- lexical-binding: t; -*-
-;; Copyright (C) 2014-2020 Free Software Foundation, Inc.
+;; Copyright (C) 2014-2022 Free Software Foundation, Inc.
;; URL: https://www.gnu.org/software/auctex/
;; Maintainer: auctex-devel@gnu.org
;; Notifications-To: auctex-diffs@gnu.org
-;; Package-Requires: ((emacs "24.3") (nadvice "0.3"))
+;; Package-Requires: ((emacs "25.1"))
;; Keywords: TeX LaTeX Texinfo ConTeXt docTeX preview-latex
;; This file is part of AUCTeX.
diff --git a/configure.ac b/configure.ac
index a435cb8ecb..fe7616d5a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Autoconf script for AUCTeX
dnl Maintainer: auctex-devel@gnu.org
-dnl Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+dnl Copyright (C) 2003-2022Free Software Foundation, Inc.
dnl This file is part of AUCTeX.
@@ -37,7 +37,7 @@ AC_SUBST(PREVIEWVERSION)
EMACS_PROG_EMACS
-EMACS_CHECK_VERSION(24,3)
+EMACS_CHECK_VERSION(25,1)
# The Debian package uses `--disable-build-dir-test'; normal users should
# never need to modify the default behavior.
diff --git a/doc/changes.texi b/doc/changes.texi
index 12acd0c247..b8c70ba33e 100644
--- a/doc/changes.texi
+++ b/doc/changes.texi
@@ -11,6 +11,9 @@
@heading News since last release
@itemize @bullet
+@item
+@AUCTeX{} now requires GNU Emacs 25.1 or higher.
+
@item
@AUCTeX{} tracks the change in Emacs where initial inputs in the
minibuffer during queries are getting phased out. Queries for the
diff --git a/doc/faq.texi b/doc/faq.texi
index da5576b122..a6122ec01b 100644
--- a/doc/faq.texi
+++ b/doc/faq.texi
@@ -71,7 +71,7 @@ statements related to the problem.
@item
What versions of Emacs are supported?
-@AUCTeX{} was tested with @w{GNU Emacs 24.3}. Older versions may work but
+@AUCTeX{} was tested with @w{GNU Emacs 25.1}. Older versions may work but
are unsupported.
@item
diff --git a/doc/install.texi b/doc/install.texi
index f7af60ff2c..19034cb957 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -96,7 +96,7 @@ the file @file{INSTALL.windows}.
@end ifclear
@itemize @bullet
-@item GNU Emacs 24.3 or higher
+@item GNU Emacs 25.1 or higher
Using @previewlatex{} requires a version of Emacs compiled with image
support.
diff --git a/doc/preview-faq.texi b/doc/preview-faq.texi
index 569ef00313..bf16c7f61a 100644
--- a/doc/preview-faq.texi
+++ b/doc/preview-faq.texi
@@ -48,7 +48,7 @@ to @email{auctex-devel@@gnu.org}.
@subsection Which version of Emacs is needed?
@previewlatex{} nominally requires @w{GNU Emacs} with a version of at
-least 24.3.
+least 25.1.
@subsection Which versions of Ghostscript and @AUCTeX{} are needed?
diff --git a/tex-site.el.in b/tex-site.el.in
index 8757fefa83..e088251efd 100644
--- a/tex-site.el.in
+++ b/tex-site.el.in
@@ -38,10 +38,8 @@
;;; Code:
-(when (or (< emacs-major-version 24)
- (and (= emacs-major-version 24)
- (< emacs-minor-version 3)))
- (error "AUCTeX requires Emacs 24.3 or later"))
+(when (< emacs-major-version 25)
+ (error "AUCTeX requires Emacs 25.1 or later"))
(unless (or (fboundp 'TeX-modes-set) ;Avoid inf-looping.
(fboundp 'TeX-tex-mode)) ;auctex-autoloads is not loaded.
diff --git a/tex.el b/tex.el
index 0187459b64..9188ccd74d 100644
--- a/tex.el
+++ b/tex.el
@@ -28,10 +28,8 @@
;;; Code:
-(when (or (< emacs-major-version 24)
- (and (= emacs-major-version 24)
- (< emacs-minor-version 3)))
- (error "AUCTeX requires Emacs 24.3 or later"))
+(when (< emacs-major-version 25)
+ (error "AUCTeX requires Emacs 25.1 or later"))
(require 'custom)
(require 'tex-site)
- [AUCTeX-diffs] [elpa] externals/auctex updated (2568505587 -> b91f15b3a3), Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex db75369df3 05/14: * latex.el (TeX-read-hook): Support 'include/excluded' hook., Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 86de20d0b2 02/14: Make prettification work reliably, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex aae80c4725 11/14: ; Minor Doc fix, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 12f0b610a1 06/14: * style/ltx-base.el: Update style., Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 5d951fea03 09/14: Fix bibtex dialect, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex df8d6fe772 04/14: Document how to bump the required Emacs version, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 0b24e363f8 01/14: Improve indentation after '\end{macrocode}' in docTeX mode, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex a25652ffe2 10/14: Update style/fbox.el to package version 0.06, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex f8d19d5cbb 07/14: ; * style/ltx-base.el ("ltx-base"): Fix entry for "@addtoreset"., Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 62f8341717 03/14: Lift required GNU Emacs version to 25.1,
Tassilo Horn <=
- [AUCTeX-diffs] [elpa] externals/auctex 35b71dfe3f 08/14: Add new style/etoolbox.el, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex b91f15b3a3 14/14: Release GNU AUCTeX 13.1.3, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex c534b17704 12/14: Avoid using variadic setq-local, Tassilo Horn, 2022/04/16
- [AUCTeX-diffs] [elpa] externals/auctex 615d6f2052 13/14: Merge remote-tracking branch 'origin/master' into externals/auctex, Tassilo Horn, 2022/04/16