diff options
author | Glenn Morris <rgm@gnu.org> | 2018-06-30 18:56:49 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-06-30 18:56:49 -0700 |
commit | 31d1bb04ccf66f2f25e856fc224285a851f1eeff (patch) | |
tree | fbb228a5995728b2596761e664110123851bc7d0 | |
parent | 67afa75e2b97c08976f0e5a8502dac5851d45f93 (diff) | |
download | emacs-31d1bb04ccf66f2f25e856fc224285a851f1eeff.tar.gz emacs-31d1bb04ccf66f2f25e856fc224285a851f1eeff.tar.bz2 emacs-31d1bb04ccf66f2f25e856fc224285a851f1eeff.zip |
Unbreak bootstrap
* lisp/jsonrpc.el (jsonrpc-connection, jsonrpc-process-connection):
Don't autoload defclass, else dumping fails loading loaddefs.el
due to trying to autoload eieio-defclass-autoload.
-rw-r--r-- | lisp/jsonrpc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index 5814ff692f0..b77db716015 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el @@ -49,7 +49,7 @@ ;;; Public API ;;; -;;;###autoload + (defclass jsonrpc-connection () ((name :accessor jsonrpc-name @@ -311,7 +311,7 @@ DEFERRED is passed to `jsonrpc-async-request', which see." ;;; Specfic to `jsonrpc-process-connection' ;;; -;;;###autoload + (defclass jsonrpc-process-connection (jsonrpc-connection) ((-process :initarg :process :accessor jsonrpc--process |