mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Support kernel reset operations.
This commit is contained in:
parent
c8c36192c3
commit
3b0498655c
1 changed files with 3 additions and 1 deletions
|
@ -139,7 +139,9 @@
|
|||
|
||||
|
||||
(defun* ein:kernel--kernel-started (kernel &key data &allow-other-keys)
|
||||
(destructuring-bind (&key id &allow-other-keys) (plist-get data :kernel)
|
||||
(if (plist-get data :kernel)
|
||||
(setq data (plist-get data :kernel)))
|
||||
(destructuring-bind (&key id &allow-other-keys) data
|
||||
(unless id
|
||||
(error "Failed to start kernel. No `kernel_id' or `ws_url'. Got %S."
|
||||
data))
|
||||
|
|
Loading…
Add table
Reference in a new issue