Messed up the name of eglot-xref-lessp-function.
* eglot.el (eglot--handling-xrefs): Use eglot-xref-lessp-function
GitHub-reference: per https://github.com/joaotavora/eglot/issues/220
(defmacro eglot--handling-xrefs (&rest body)
"Properly sort and handle xrefs produced and returned by BODY."
`(unwind-protect
- (sort (progn ,@body) eglot-xref-sort-function)
+ (sort (progn ,@body) eglot-xref-lessp-function)
(maphash (lambda (_uri buf) (kill-buffer buf)) eglot--temp-location-buffers)
(clrhash eglot--temp-location-buffers)))