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:
parent
1cec7bf8be
commit
be8455d67c
1 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue