diff options
| -rw-r--r-- | lisp/jsonrpc.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index f7ccc8d2745..67243fd49e3 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el | |||
| @@ -51,6 +51,7 @@ | |||
| 51 | (defclass jsonrpc-connection () | 51 | (defclass jsonrpc-connection () |
| 52 | ((name | 52 | ((name |
| 53 | :accessor jsonrpc-name | 53 | :accessor jsonrpc-name |
| 54 | :initform "anonymous" | ||
| 54 | :initarg :name | 55 | :initarg :name |
| 55 | :documentation "A name for the connection") | 56 | :documentation "A name for the connection") |
| 56 | (-request-dispatcher | 57 | (-request-dispatcher |
| @@ -76,6 +77,7 @@ | |||
| 76 | :accessor jsonrpc--events-buffer | 77 | :accessor jsonrpc--events-buffer |
| 77 | :documentation "A buffer pretty-printing the JSONRPC events") | 78 | :documentation "A buffer pretty-printing the JSONRPC events") |
| 78 | (-events-buffer-scrollback-size | 79 | (-events-buffer-scrollback-size |
| 80 | :initform nil | ||
| 79 | :initarg :events-buffer-scrollback-size | 81 | :initarg :events-buffer-scrollback-size |
| 80 | :accessor jsonrpc--events-buffer-scrollback-size | 82 | :accessor jsonrpc--events-buffer-scrollback-size |
| 81 | :documentation "Max size of events buffer. 0 disables, nil means infinite.") | 83 | :documentation "Max size of events buffer. 0 disables, nil means infinite.") |