summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-03-21 21:51:36 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-03-21 21:51:36 +0100
commit64f36561ef53d2992bd6d16b42dab1684f7f6a59 (patch)
tree1f0470ad57c2890764e56630f7e4eb83b4ffb30b
parent3e6153e48fccc8dcf94bd8010785ddcfbbfcefc6 (diff)
parent719887958dafd67a3af7355bd3caafe694660e87 (diff)
downloadorg-mode-64f36561ef53d2992bd6d16b42dab1684f7f6a59.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ob-core.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index 02efa1d..7591e99 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -3135,7 +3135,8 @@ after the babel API for OLD-type source blocks is fully defined.
Callers of this function will probably want to add an entry to
`org-src-lang-modes' as well."
(dolist (fn '("execute" "expand-body" "prep-session"
- "variable-assignments" "load-session"))
+ "variable-assignments" "load-session"
+ "edit-prep"))
(let ((sym (intern-soft (concat "org-babel-" fn ":" old))))
(when (and sym (fboundp sym))
(defalias (intern (concat "org-babel-" fn ":" new)) sym))))