summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Richard <theonewiththeevillook@yahoo.fr>2013-04-06 02:23:59 +0200
committerBastien Guerry <bzg@altern.org>2013-04-06 02:23:59 +0200
commit61f8870eb42229c8a7e96467df81a7f72d6c4466 (patch)
tree6d2a6dc4132154644342df4bacc4eb1edb7ab9b3
parentbcc7a9cadf3c8bc58bd9b0278c9615bf4e2859ff (diff)
downloadorg-mode-61f8870eb42229c8a7e96467df81a7f72d6c4466.tar.gz
contrib/lisp/ob-maxima.el (org-babel-execute:maxima): Ignore lines with ";;; Loading #P"
* contrib/lisp/ob-maxima.el (org-babel-execute:maxima): Ignore lines with ";;; Loading #P". TINYCHANGE
-rw-r--r--lisp/ob-maxima.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/ob-maxima.el b/lisp/ob-maxima.el
index 916dd7e..726d686 100644
--- a/lisp/ob-maxima.el
+++ b/lisp/ob-maxima.el
@@ -83,6 +83,7 @@ called by `org-babel-execute-src-block'."
(mapcar (lambda (line)
(unless (or (string-match "batch" line)
(string-match "^rat: replaced .*$" line)
+ (string-match "^;;; Loading #P" line)
(= 0 (length line)))
line))
(split-string raw "[\r\n]"))) "\n"))