diff options
author | Bastien Guerry <bzg@gnu.org> | 2020-12-13 13:44:15 +0100 |
---|---|---|
committer | Bastien Guerry <bzg@gnu.org> | 2020-12-13 13:44:15 +0100 |
commit | f22856a5c54d99867cd24c08a14bbda23d5c6229 (patch) | |
tree | b6bd688963531eccb8b9d18195df0edfc34ba59d /lisp/org/ob-mscgen.el | |
parent | 6aa9fe3e1b4052b2acde86404a90e35893ebfa00 (diff) | |
download | emacs-f22856a5c54d99867cd24c08a14bbda23d5c6229.tar.gz emacs-f22856a5c54d99867cd24c08a14bbda23d5c6229.tar.bz2 emacs-f22856a5c54d99867cd24c08a14bbda23d5c6229.zip |
Update to Org 9.4.1
Diffstat (limited to 'lisp/org/ob-mscgen.el')
-rw-r--r-- | lisp/org/ob-mscgen.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/org/ob-mscgen.el b/lisp/org/ob-mscgen.el index fa4d3e3ac34..2bd9144f4fe 100644 --- a/lisp/org/ob-mscgen.el +++ b/lisp/org/ob-mscgen.el @@ -68,8 +68,7 @@ mscgen supported formats." (let* ((out-file (or (cdr (assq :file params)) "output.png" )) (filetype (or (cdr (assq :filetype params)) "png" ))) (unless (cdr (assq :file params)) - (error " -ERROR: no output file specified. Add \":file name.png\" to the src header")) + (error "ERROR: no output file specified. Add \":file name.png\" to the src header")) (org-babel-eval (concat "mscgen -T " filetype " -o " out-file) body) nil)) ;; signal that output has already been written to file @@ -79,6 +78,4 @@ ERROR: no output file specified. Add \":file name.png\" to the src header")) (provide 'ob-mscgen) - - ;;; ob-msc.el ends here |