diff options
| author | Paul Eggert | 2020-05-01 10:50:03 -0700 |
|---|---|---|
| committer | Paul Eggert | 2020-05-01 10:50:22 -0700 |
| commit | 4b6c2bcecfe84585bae9fdfecbd87a48291793a5 (patch) | |
| tree | e81357907b96a930e91da6216d6e9c6477b93ee4 | |
| parent | b23daca20788ab6b54362c5bdb0470887de106fb (diff) | |
| download | emacs-4b6c2bcecfe84585bae9fdfecbd87a48291793a5.tar.gz emacs-4b6c2bcecfe84585bae9fdfecbd87a48291793a5.zip | |
* lisp/jsonrpc.el (initialize-instance): Fix closing-paren typo.
| -rw-r--r-- | lisp/jsonrpc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index 69ee94159d7..696a2daa286 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el | |||
| @@ -407,7 +407,7 @@ connection object, called when the process dies .") | |||
| 407 | (buffer-disable-undo) | 407 | (buffer-disable-undo) |
| 408 | (set-marker (process-mark proc) (point-min)) | 408 | (set-marker (process-mark proc) (point-min)) |
| 409 | (let ((inhibit-read-only t)) (erase-buffer) (read-only-mode t))) | 409 | (let ((inhibit-read-only t)) (erase-buffer) (read-only-mode t))) |
| 410 | (process-put proc 'jsonrpc-connection conn))) | 410 | (process-put proc 'jsonrpc-connection conn)))) |
| 411 | 411 | ||
| 412 | (cl-defmethod jsonrpc-connection-send ((connection jsonrpc-process-connection) | 412 | (cl-defmethod jsonrpc-connection-send ((connection jsonrpc-process-connection) |
| 413 | &rest args | 413 | &rest args |