summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2022-03-16 00:10:08 +0100
committerPhilipp Stephani <phst@google.com>2022-03-17 12:58:52 +0100
commit6ed3f04e5a3c8aee40a26805bb00cdd070eba319 (patch)
treeadb8ea400cd5a2b0ac84ddc64d6838b1b8c2fdb1
parent06488ded6b9d8b4971e2e6c5b98b4fab6fe2d167 (diff)
downloademacs-6ed3f04e5a3c8aee40a26805bb00cdd070eba319.tar.gz
Fix a use of 'cl-defgeneric'.
* lisp/progmodes/xref.el (xref-match-length): Use 'cl-defmethod' instead of 'cl-defgeneric'.
-rw-r--r--lisp/progmodes/xref.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index a5e6edf951d..5d1ba4eaf55 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -227,7 +227,7 @@ This behavior is new in Emacs 28.")
"A match xref item describes a search result."
length)
-(cl-defgeneric xref-match-length ((item xref-match-item))
+(cl-defmethod xref-match-length ((item xref-match-item))
"Return the length of the match."
(xref-match-item-length item))