mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
Eglot: restore compatibility to Emacs 26.3
Github-reference: https://github.com/joaotavora/eglot/discussions/1591 Can't use setf plist-get. * lisp/progmodes/eglot.el (eglot--async-request): Use cl-getf.
This commit is contained in:
parent
498eafb4f1
commit
669e93ec5d
1 changed files with 1 additions and 1 deletions
|
|
@ -2117,7 +2117,7 @@ and also used as a hint of the request cancellation mechanism (see
|
|||
:timeout-fn (wrapfn timeout-fn)
|
||||
moreargs)))
|
||||
(when (and hint eglot-advertise-cancellation)
|
||||
(push id (plist-get inflight hint)))
|
||||
(push id (cl-getf inflight hint)))
|
||||
id))
|
||||
|
||||
(cl-defun eglot--delete-overlays (&optional (prop 'eglot--overlays))
|
||||
|
|
|
|||
Loading…
Reference in a new issue