mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-06 07:51:39 -05:00
car
instead of caar
in jupyter--ioloop-queue-message
`elem` is a list not a list of lists
This commit is contained in:
parent
f705dc96fe
commit
56e5f047bd
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ message that has a channel type with the lower priority."
|
||||||
`(let ((elem ,elem))
|
`(let ((elem ,elem))
|
||||||
(if (null ,messages) (push elem ,messages)
|
(if (null ,messages) (push elem ,messages)
|
||||||
;; Put elem in its sorted position
|
;; Put elem in its sorted position
|
||||||
(let ((ctype (caar elem))
|
(let ((ctype (car elem))
|
||||||
(mt (jupyter-message-time (cddr elem)))
|
(mt (jupyter-message-time (cddr elem)))
|
||||||
(head ,messages)
|
(head ,messages)
|
||||||
(tail ,messages))
|
(tail ,messages))
|
||||||
|
|
Loading…
Add table
Reference in a new issue