auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 62f8341717e71679072d6


From: Arash Esbati
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 62f8341717e71679072d6dd4f53b58302c25e104
Date: Mon, 11 Apr 2022 06:04:35 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  62f8341717e71679072d6dd4f53b58302c25e104 (commit)
      from  86de20d0b285803ead0f242be5216916bab2abc0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 62f8341717e71679072d6dd4f53b58302c25e104
Author: Arash Esbati <arash@gnu.org>
Date:   Mon Apr 11 11:58:53 2022 +0200

    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.

diff --git a/auctex.el.in b/auctex.el.in
index 014c0a2b..61527e23 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 a435cb8e..fe7616d5 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 12acd0c2..b8c70ba3 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 da5576b1..a6122ec0 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 f7af60ff..19034cb9 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 569ef003..bf16c7f6 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 8757fefa..e088251e 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 0187459b..9188ccd7 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)

-----------------------------------------------------------------------

Summary of changes:
 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(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]