mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 23:41:38 -05:00
Fix wrong number of arguments
This commit is contained in:
parent
63a1b846d6
commit
b77dd297e3
1 changed files with 4 additions and 2 deletions
|
@ -1185,8 +1185,10 @@ execute the current cell."
|
|||
(line-beginning-position) (point))
|
||||
"")))
|
||||
(jupyter-handle-is-complete-reply
|
||||
jupyter-current-client
|
||||
nil (if complete-p "complete" "incomplete") "")))
|
||||
jupyter-current-client
|
||||
nil '(:content
|
||||
(:status (if complete-p "complete" "incomplete")
|
||||
:indent "")))))
|
||||
(t
|
||||
(let ((res (jupyter-wait-until-received "is_complete_reply"
|
||||
(let ((jupyter-inhibit-handlers '(not "is_complete_reply")))
|
||||
|
|
Loading…
Add table
Reference in a new issue