From cdbd6bde5f5748044428144fbed35bf7906c9681 Mon Sep 17 00:00:00 2001 From: Amith Mathew Date: Mon, 6 Aug 2018 17:32:55 -0400 Subject: [PATCH] Typo fix for when-let call. Correcting a "when-let" call by changing to "-when-let". --- ob-ipython.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ob-ipython.el b/ob-ipython.el index 043fb9a..5462198 100644 --- a/ob-ipython.el +++ b/ob-ipython.el @@ -313,7 +313,7 @@ a new kernel will be started." (defun ob-ipython--maybe-run-async () (when (not (ob-ipython--running-p)) - (when-let (val (ob-ipython--dequeue 'ob-ipython--async-queue)) + (-when-let (val (ob-ipython--dequeue 'ob-ipython--async-queue)) (cl-destructuring-bind (code name callback args) val (ob-ipython--run-async code name callback args)))))