diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-12-15 01:34:28 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-12-15 01:34:28 -0500 |
commit | b43d7fe88b02c59500fe052da4fc0c251527e646 (patch) | |
tree | af229ce143d07df1e11880156983f2f8e7962211 /lisp | |
parent | 4ceffa4f230acf2812d403d0d3fba66fb752d1bd (diff) | |
download | emacs.d-b43d7fe88b02c59500fe052da4fc0c251527e646.tar.gz |
org-babel-do-load-languages: Update sh name
This has been wrong for a long time. ob-sh.el was renamed to
ob.shell.el in Org version 8.2, so org-babel-do-load-languages was
loading the builtin ob-sh.el. I didn't notice any issue until a recent
change in Org removed a function that ob-sh.el calls.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index a1d7506..0af6195 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -682,7 +682,7 @@ to be easily overriden.") (org-babel-do-load-languages 'org-babel-load-languages - '((sh . t) + '((shell . t) (python . t) (R . t) (emacs-lisp . t) |