diff options
author | fpi | 2018-04-12 12:53:21 +0200 |
---|---|---|
committer | fpi | 2018-04-12 12:53:21 +0200 |
commit | 5a940202d991048b9b6c686687457972d490c9d2 (patch) | |
tree | cf9085ef497d9f947e672538818a05f82aa12b33 | |
parent | Comma separated results returned as list if :results value (diff) |
removed missed var expansion in body
-rw-r--r-- | ob-spice.org | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ob-spice.org b/ob-spice.org index b95620a..b6f4c5a 100644 --- a/ob-spice.org +++ b/ob-spice.org @@ -39,7 +39,7 @@ - option to return content of generated gnuplot .plt for easy use with :post {generic gnuplot block} - Full .plt or just data points? -** [0/4] Flags +** [0/5] Flags *** NEXT [#C] :netlist Name of src block to include for netlist *** NEXT [#B] :dir @@ -48,6 +48,8 @@ working directory to start ngspice in default filename to use for *** NEXT :gnuplot name of gnuplot block or .plt file to prepend to each plot +*** NEXT :batch / :no-interactive +use batch mode ** DONE Variable replacement in spice body ** INPROGRESS Execution using ngspice *** NEXT Steps to using interactive mode @@ -198,7 +200,7 @@ Access with ~$x[0]~ or ~$x[2-len]~. (defun org-babel-execute:spice-exp (body params) "Execute a block of Spice code with Babel. This function is called by `org-babel-execute-src-block'." - (let* ((body (org-babel-expand-body:spice-exp body params)) + (let* (;(body (org-babel-expand-body:spice-exp body params)) (gnuplot (cdr (assq :gnuplot params))) (result-params (cdr (assq :result-params params))) (result-type (cdr (assq :result-type params))) |