]> git.eshelyaron.com Git - emacs.git/commitdiff
xref.el: Better compatibility with outdated Emacs 28 builds
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 19 Oct 2021 22:03:52 +0000 (01:03 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 19 Oct 2021 22:04:17 +0000 (01:04 +0300)
* 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

index 58347603c118d82f7cca1e42109823e0dbc83462..a198ae349e3bc581be37431c9191af4b39bb7ebb 100644 (file)
@@ -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)