mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 15:41:37 -05:00
Use quoted lists
This commit is contained in:
parent
56e5f047bd
commit
34b0d45078
1 changed files with 6 additions and 6 deletions
|
@ -296,12 +296,12 @@ message that has a channel type with the lower priority."
|
|||
(iopub (jupyter-connect-channel :iopub ,iopub-ep session-id))
|
||||
(shell (jupyter-connect-channel :shell ,shell-ep session-id))
|
||||
(stdin (jupyter-connect-channel :stdin ,stdin-ep session-id))
|
||||
(priorities (list (cons :shell 4)
|
||||
(cons :iopub 2)
|
||||
(cons :stdin 2)))
|
||||
(channels (list (cons stdin :stdin)
|
||||
(cons shell :shell)
|
||||
(cons iopub :iopub)))
|
||||
(priorities '((:shell . 4)
|
||||
(:iopub . 2)
|
||||
(:stdin . 2)))
|
||||
(channels `((,stdin . :stdin)
|
||||
(,shell . :shell)
|
||||
(,iopub . :iopub)))
|
||||
(idle-count 0)
|
||||
(timeout 20)
|
||||
(messages nil))
|
||||
|
|
Loading…
Add table
Reference in a new issue