summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnesto Durante <edurante@localhost.localdomain>2014-08-25 18:16:01 +0200
committerEric Schulte <schulte.eric@gmail.com>2014-08-28 10:46:56 -0400
commitccf52269aa670ef6f46012bafdec90aee953282b (patch)
treefe68cb1378bfba0fe3b0b501b3484ba9901f0eb9
parente4e80bfa3377d4b07d58452be14ab1b314fac5fc (diff)
downloadorg-mode-ccf52269aa670ef6f46012bafdec90aee953282b.tar.gz
ob-C: fix missing function org-babel-expand-body:cpp
-rw-r--r--lisp/ob-C.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ob-C.el b/lisp/ob-C.el
index 2e146d4..076276e 100644
--- a/lisp/ob-C.el
+++ b/lisp/ob-C.el
@@ -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'."