From b50bc20b00294f89f6fc6c980d99c1d5cef77111 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Tue, 4 Sep 2012 17:10:59 +0200 Subject: [PATCH] Automatically load ein-org-src --- lisp/ein-notebook.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/ein-notebook.el b/lisp/ein-notebook.el index 2309fd0..58cd09b 100644 --- a/lisp/ein-notebook.el +++ b/lisp/ein-notebook.el @@ -981,6 +981,8 @@ This hook is run regardless the actual major mode used." ;; So try to load extra modules here. (when (require 'mumamo nil t) (require 'ein-mumamo)) + (when (require 'org-src nil t) + (require 'ein-org-src)) ;; Return first matched mode (loop for mode in ein:notebook-modes if (functionp mode)