branch: externals/auctex commit 62f8341717e71679072d6dd4f53b58302c25e104 Author: Arash Esbati <ar...@gnu.org> Commit: Arash Esbati <ar...@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-de...@gnu.org ;; Notifications-To: auctex-di...@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-de...@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)