Use quoted lists

This commit is contained in:
Nathaniel Nicandro 2018-01-11 00:25:08 -06:00
parent 56e5f047bd
commit 34b0d45078

View file

@ -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))