branch: externals/auctex commit 9c850abddfb4c7976fbb4758081276dcabea20e1 Author: Arash Esbati <ar...@gnu.org> Commit: Arash Esbati <ar...@gnu.org>
Lift required GNU Emacs version to 27.1 * RELEASE: * auctex.el.in: * configure.ac: * 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 27.1. --- RELEASE | 2 +- auctex.el.in | 4 ++-- configure.ac | 2 +- doc/changes.texi | 7 +++++++ doc/faq.texi | 2 +- doc/install.texi | 2 +- doc/preview-faq.texi | 2 +- tex-site.el.in | 6 +++--- tex.el | 4 ++-- 9 files changed, 19 insertions(+), 12 deletions(-) diff --git a/RELEASE b/RELEASE index 3c8a52f223..040e72a87a 100644 --- a/RELEASE +++ b/RELEASE @@ -45,7 +45,7 @@ file-local variable where the assigned value can only be between Requirements ------------ -It is required that you use at least GNU Emacs 26.1. +It is required that you use at least GNU Emacs 27.1. The preview-latex subsystem requires image support. diff --git a/auctex.el.in b/auctex.el.in index fab355f0b1..a9c4b0c84d 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-2023 Free Software Foundation, Inc. +;; Copyright (C) 2014-2024 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 "26.1")) +;; Package-Requires: ((emacs "27.1")) ;; Keywords: TeX LaTeX Texinfo ConTeXt docTeX preview-latex ;; This file is part of AUCTeX. diff --git a/configure.ac b/configure.ac index 1dbbf36824..49d2bf8dcd 100644 --- a/configure.ac +++ b/configure.ac @@ -37,7 +37,7 @@ AC_SUBST(PREVIEWVERSION) EMACS_PROG_EMACS -EMACS_CHECK_VERSION(26,1) +EMACS_CHECK_VERSION(27,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 e88b9d608b..ef79775706 100644 --- a/doc/changes.texi +++ b/doc/changes.texi @@ -8,6 +8,13 @@ @end ifset +@heading News since last release + +@itemize @bullet +@item +@AUCTeX{} now requires GNU Emacs 27.1 or higher. +@end itemize + @heading News in 13.3 @itemize @bullet diff --git a/doc/faq.texi b/doc/faq.texi index a2906d4da0..0fb58dd58e 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 26.1}. Older versions may work but +@AUCTeX{} was tested with @w{GNU Emacs 27.1}. Older versions may work but are unsupported. @item diff --git a/doc/install.texi b/doc/install.texi index 8b7b00e35d..29b176358c 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 26.1 or higher +@item GNU Emacs 27.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 3b983bf159..0323a0bd9c 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 26.1. +least 27.1. @subsection Which versions of Ghostscript and @AUCTeX{} are needed? diff --git a/tex-site.el.in b/tex-site.el.in index 8448a30c5b..4412323087 100644 --- a/tex-site.el.in +++ b/tex-site.el.in @@ -1,6 +1,6 @@ ;;; tex-site.el - Site specific variables. Don't edit. -*- lexical-binding: t; -*- -;; Copyright (C) 2005-2023 Free Software Foundation, Inc. +;; Copyright (C) 2005-2024 Free Software Foundation, Inc. ;; ;; completely rewritten. @@ -38,8 +38,8 @@ ;;; Code: -(when (< emacs-major-version 26) - (error "AUCTeX requires Emacs 26.1 or later")) +(when (< emacs-major-version 27) + (error "AUCTeX requires Emacs 27.1 or later")) (declare-function BibTeX-auto-store "latex") diff --git a/tex.el b/tex.el index afa02e5e23..c49d7e080e 100644 --- a/tex.el +++ b/tex.el @@ -28,8 +28,8 @@ ;;; Code: -(when (< emacs-major-version 26) - (error "AUCTeX requires Emacs 26.1 or later")) +(when (< emacs-major-version 27) + (error "AUCTeX requires Emacs 27.1 or later")) (require 'custom) (require 'tex-site)