From: Dmitry Gutov Date: Tue, 19 Oct 2021 22:03:52 +0000 (+0300) Subject: xref.el: Better compatibility with outdated Emacs 28 builds X-Git-Tag: emacs-29.0.90~3671^2~488 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=766108f48db29f766908c728969f78d8e896171e;p=emacs.git 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. --- 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)