branch: externals/org commit c2eadf85e6a693eb8e6dfbd1264d52c76b2a190b Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
ob-maxima: Filter out message about loading rc file * lisp/ob-maxima.el (org-babel-maxima--output-filter-regexps): Update regexps. Reported-by: Lockywolf --- lisp/ob-maxima.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ob-maxima.el b/lisp/ob-maxima.el index 80614456cc..8bf1882a7e 100644 --- a/lisp/ob-maxima.el +++ b/lisp/ob-maxima.el @@ -116,6 +116,7 @@ output. See `org-babel-maxima-expand'.") "^;;; Loading #P" ;; remove notices from the lisp implementation "^read and interpret" ;; remove notice from `batch' "^(%\\([i]-?[0-9]+\\))[ ]$" ;; remove empty input lines from `batch'-ing + "^Loading .+maxima-init\\.mac" ;; remove message about loading init file ) "Regexps to remove extraneous lines from Maxima's output. See `org-babel-maxima--output-filter'.")