emacs-diffs
[Top][All Lists]
Advanced

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

master 766108f: xref.el: Better compatibility with outdated Emacs 28 bui


From: Dmitry Gutov
Subject: master 766108f: xref.el: Better compatibility with outdated Emacs 28 builds
Date: Tue, 19 Oct 2021 18:04:23 -0400 (EDT)

branch: master
commit 766108f48db29f766908c728969f78d8e896171e
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>

    xref.el: Better compatibility with outdated Emacs 28 builds
    
    * lisp/progmodes/xref.el:
    Ensure better compatibility with outdated Emacs 28 builds as well
    (like the pgtk branch).  Bump the version.
---
 lisp/progmodes/xref.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index 5834760..a198ae3 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -1,7 +1,7 @@
 ;;; xref.el --- Cross-referencing commands              -*-lexical-binding:t-*-
 
 ;; Copyright (C) 2014-2021 Free Software Foundation, Inc.
-;; Version: 1.3.1
+;; Version: 1.3.2
 ;; Package-Requires: ((emacs "26.1"))
 
 ;; This is a GNU ELPA :core package.  Avoid functionality that is not
@@ -75,7 +75,7 @@
 (require 'project)
 
 (eval-and-compile
-  (when (version< emacs-version "28")
+  (when (version< emacs-version "28.0.60")
     ;; etags.el in Emacs 26 and 27 uses EIEIO, and its location type
     ;; inherits from `xref-location'.
     (require 'eieio)



reply via email to

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