Skip to content

Commit f97f4b5

Browse files
committed
Guarantee zmq-core has been loaded
Requiring `zmq` no longer loads it in >= v1.0.1 * jupyter-ioloop.el: Call `zmq-load` at top level * jupyter-zmq-channel.el: Ditto.
1 parent cd7988f commit f97f4b5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

jupyter-ioloop.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050

5151
(require 'jupyter-base)
5252
(require 'zmq)
53+
(eval-and-compile (zmq-load))
5354
(eval-when-compile (require 'subr-x))
5455

5556
(defvar jupyter-ioloop-poller nil

jupyter-zmq-channel.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
(require 'jupyter-messages)
3838
(require 'zmq)
39+
(eval-and-compile (zmq-load))
3940
(require 'jupyter-channel)
4041
(eval-when-compile (require 'subr-x))
4142

0 commit comments

Comments
 (0)