[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#67480: 30.0.50; Cannot start eglot
From: |
João Távora |
Subject: |
bug#67480: 30.0.50; Cannot start eglot |
Date: |
Tue, 28 Nov 2023 15:10:55 +0000 |
On Tue, Nov 28, 2023 at 2:52 PM Stefan Monnier <monnier@iro.umontreal.ca> wrote:
> diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el
> index 52ffb220d8b..4298d75c5bf 100644
> --- a/lisp/jsonrpc.el
> +++ b/lisp/jsonrpc.el
> @@ -71,6 +71,7 @@ jsonrpc-connection
> :accessor jsonrpc--request-continuations
> :documentation "A hash table of request ID to continuation lambdas.")
> (-events-buffer
> + :initform nil
> :accessor jsonrpc--events-buffer
> :documentation "A buffer pretty-printing the JSONRPC events")
> (-events-buffer-scrollback-size
Seem sensible, and feel free to push, please.
But it'd also be nice to have a backtrace to that error to
see why jsonrpc.el is trying to access the jsonrpc--events-buffer
"too early".
And kudos for going through these EIEIO bugs, even if in backward
incompatible ways ;-). Accessor functions definitely must go thru
the slot-value protocol.
João