From 56e5f047bd723fc5b222569850f42aab2034a010 Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Thu, 11 Jan 2018 00:22:19 -0600 Subject: [PATCH] `car` instead of `caar` in `jupyter--ioloop-queue-message` `elem` is a list not a list of lists --- jupyter-client.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter-client.el b/jupyter-client.el index ba02440..fca7ea7 100644 --- a/jupyter-client.el +++ b/jupyter-client.el @@ -261,7 +261,7 @@ message that has a channel type with the lower priority." `(let ((elem ,elem)) (if (null ,messages) (push elem ,messages) ;; Put elem in its sorted position - (let ((ctype (caar elem)) + (let ((ctype (car elem)) (mt (jupyter-message-time (cddr elem))) (head ,messages) (tail ,messages))