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
This commit is contained in:
Nicolas Richard 2013-04-06 02:23:59 +02:00 committed by Bastien Guerry
parent bcc7a9cadf
commit 61f8870eb4
1 changed files with 1 additions and 0 deletions

View File

@ -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"))