]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Emacs 26 support in xref.el
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 19 Oct 2021 14:32:35 +0000 (17:32 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 19 Oct 2021 14:33:08 +0000 (17:33 +0300)
* lisp/progmodes/xref.el (xref--defstruct): New macro.
(xref-item, xref-match-item): Use it in definitions.

lisp/progmodes/xref.el

index 52a4e0c5435f583e2b29af2203c383d550be1ecd..8c8687c0d6bbdc62e32a03a0622f3e8448732a2c 100644 (file)
@@ -195,16 +195,23 @@ is not known."
 \f
 ;;; Cross-reference
 
-(cl-defstruct (xref-item
-               (:constructor xref-make (summary location))
-               (:noinline t))
+(defmacro xref--defstruct (name &rest fields)
+  (declare (indent 1))
+  `(cl-defstruct ,(if (>= emacs-major-version 27)
+                      name
+                    (remq (assq :noinline name) name))
+     ,@fields))
+
+(xref--defstruct (xref-item
+                  (:constructor xref-make (summary location))
+                  (:noinline t))
   "An xref item describes a reference to a location somewhere."
   summary location)
 
-(cl-defstruct (xref-match-item
-               (:include xref-item)
-               (:constructor xref-make-match (summary location length))
-               (:noinline t))
+(xref--defstruct (xref-match-item
+                  (:include xref-item)
+                  (:constructor xref-make-match (summary location length))
+                  (:noinline t))
   "A match xref item describes a search result."
   length)