summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-05 16:48:46 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-05 16:48:46 +0200
commit348552382147cf8092bd4669e14dd4b83f044904 (patch)
tree493e8a01455905a4d9ef05030e979ac2e7d0cd03
parent717b0f039d81d5f573f8a35509b2193019d24896 (diff)
parent8e5d74ca4c132af4df2a6d330633809866f202b5 (diff)
downloadorg-mode-348552382147cf8092bd4669e14dd4b83f044904.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ob-sed.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ob-sed.el b/lisp/ob-sed.el
index b2c80f8..ca8b754 100644
--- a/lisp/ob-sed.el
+++ b/lisp/ob-sed.el
@@ -4,7 +4,7 @@
;; Author: Bjarte Johansen
;; Keywords: literate programming, reproducible research
-;; Version: 0.1.0
+;; Version: 0.1.1
;; This file is part of GNU Emacs.
@@ -79,7 +79,7 @@ function is called by `org-babel-execute-src-block'."
(cmd (mapconcat #'identity
(remq nil
(list org-babel-sed-command
- (format "--file=\"%s\"" code-file)
+ (format "-f \"%s\"" code-file)
cmd-line
in-file))
" ")))