mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 07:41:37 -05:00
Only inhibit handlers when necessary
This ensures that any bookkeeping done in the handlers is actually performed.
This commit is contained in:
parent
d875ce7116
commit
04ecedd320
1 changed files with 1 additions and 1 deletions
|
@ -1739,7 +1739,7 @@ displayed without anything showing up in the REPL buffer."
|
|||
(jupyter-repl-insert-prompt 'in))
|
||||
(setq str (string-trim str))
|
||||
(let* ((jupyter-inhibit-handlers
|
||||
(or silently '(:execute-reply :execute-result)))
|
||||
(or silently '(:execute-result)))
|
||||
(req (jupyter-send-execute-request jupyter-repl-current-client
|
||||
:code (if silently (string-trim str)
|
||||
(prog1 nil
|
||||
|
|
Loading…
Add table
Reference in a new issue