Load tramp after ob-jupyter

To prevent a void-function tramp-tramp-file-p error due to an oversight
upstream. i.e. jupyter-tramp-file-name-p is inlined at compile time in
ob-jupyter.el, which calls tramp-tramp-file-p but doesn't load tramp,
resulting in the missing function error.
This commit is contained in:
Henrik Lissner 2020-07-13 01:46:15 -04:00
parent 1cec7bf8be
commit be8455d67c
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -24,4 +24,6 @@
(add-to-list 'org-src-lang-modes (cons lang-name (intern lang-tail)))))
(with-demoted-errors "Jupyter: %s"
(require lang nil t)
(require 'ob-jupyter nil t))))))
(require 'ob-jupyter nil t)))))
:config
(require 'tramp))