mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-06 07:51:39 -05:00
Fix undefined function
This commit is contained in:
parent
2d807d8670
commit
9a1321f35d
1 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ is also removed if it returns nil after handling an event."
|
|||
(when handlers
|
||||
(start)))
|
||||
(_ (error "Unhandled IO: %s" args))))
|
||||
(make-finalizer stop)))))
|
||||
(make-finalizer #'stop)))))
|
||||
|
||||
(cl-defmethod jupyter-connection ((spec (head server)))
|
||||
(jupyter-connection (jupyter-server :url (cadr spec))))
|
||||
|
@ -308,7 +308,7 @@ actions defined by this connection are
|
|||
('hb nil)
|
||||
(_
|
||||
(server-io args))))
|
||||
(make-finalizer stop))))))
|
||||
(make-finalizer #'stop))))))
|
||||
|
||||
;;; Kernel management
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue