0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

ob-C: fix missing function org-babel-expand-body:cpp

This commit is contained in:
Ernesto Durante 2014-08-25 18:16:01 +02:00 committed by Eric Schulte
parent e4e80bfa33
commit ccf52269aa

View file

@ -82,6 +82,11 @@ is currently being evaluated.")
This function calls `org-babel-execute:C++'."
(org-babel-execute:C++ body params))
(defun org-babel-expand-body:cpp (body params)
"Expand a block of C++ code with org-babel according to it's
header arguments."
(org-babel-expand-body:C++ body params))
(defun org-babel-execute:C++ (body params)
"Execute a block of C++ code with org-babel.
This function is called by `org-babel-execute-src-block'."