From 766108f48db29f766908c728969f78d8e896171e Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Wed, 20 Oct 2021 01:03:52 +0300 Subject: [PATCH] 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 58347603c11..a198ae349e3 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) -- 2.39.2