2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-octave.el --- org-babel functions for octave and matlab evaluation
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2011-08-15 13:23:11 +00:00
|
|
|
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
|
2010-03-18 18:45:39 +00:00
|
|
|
|
|
|
|
;; Author: Dan Davison
|
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2010-03-18 18:45:39 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2010-03-18 18:45:39 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-03-18 18:45:39 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:32:35 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2010-03-18 18:45:39 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
|
|
|
;; octave
|
|
|
|
;; octave-mode.el and octave-inf.el come with GNU emacs
|
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2010-07-03 02:21:31 +00:00
|
|
|
(require 'ob-ref)
|
|
|
|
(require 'ob-comint)
|
2010-07-04 22:09:20 +00:00
|
|
|
(require 'ob-eval)
|
2010-07-03 02:21:31 +00:00
|
|
|
(eval-when-compile (require 'cl))
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2010-07-04 15:24:08 +00:00
|
|
|
(declare-function matlab-shell "ext:matlab-mode")
|
|
|
|
(declare-function matlab-shell-run-region "ext:matlab-mode")
|
2010-07-03 02:21:31 +00:00
|
|
|
|
|
|
|
(defvar org-babel-default-header-args:matlab '())
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:octave '())
|
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defvar org-babel-matlab-shell-command "matlab -nosplash"
|
2010-07-13 23:20:08 +00:00
|
|
|
"Shell command to run matlab as an external process.")
|
2010-03-18 18:45:39 +00:00
|
|
|
(defvar org-babel-octave-shell-command "octave -q"
|
2010-07-13 23:20:08 +00:00
|
|
|
"Shell command to run octave as an external process.")
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defvar org-babel-matlab-with-emacs-link nil
|
2010-07-13 23:20:08 +00:00
|
|
|
"If non-nil use matlab-shell-run-region for session evaluation.
|
|
|
|
This will use EmacsLink if (matlab-with-emacs-link) evaluates
|
|
|
|
to a non-nil value.")
|
2010-07-03 02:21:31 +00:00
|
|
|
|
|
|
|
(defvar org-babel-matlab-emacs-link-wrapper-method
|
|
|
|
"%s
|
|
|
|
if ischar(ans), fid = fopen('%s', 'w'); fprintf(fid, '%%s\\n', ans); fclose(fid);
|
|
|
|
else, save -ascii %s ans
|
|
|
|
end
|
|
|
|
delete('%s')
|
|
|
|
")
|
2010-07-04 20:48:41 +00:00
|
|
|
(defvar org-babel-octave-wrapper-method
|
|
|
|
"%s
|
|
|
|
if ischar(ans), fid = fopen('%s', 'w'); fprintf(fid, '%%s\\n', ans); fclose(fid);
|
2010-08-04 03:54:24 +00:00
|
|
|
else, dlmwrite('%s', ans, '\\t')
|
2010-07-04 20:48:41 +00:00
|
|
|
end")
|
|
|
|
|
|
|
|
(defvar org-babel-octave-eoe-indicator "\'org_babel_eoe\'")
|
|
|
|
|
|
|
|
(defvar org-babel-octave-eoe-output "ans = org_babel_eoe")
|
2010-07-03 02:21:31 +00:00
|
|
|
|
|
|
|
(defun org-babel-execute:matlab (body params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of matlab code with Babel."
|
2010-07-03 02:21:31 +00:00
|
|
|
(org-babel-execute:octave body params 'matlab))
|
2010-08-01 18:34:28 +00:00
|
|
|
|
2010-03-18 18:45:39 +00:00
|
|
|
(defun org-babel-execute:octave (body params &optional matlabp)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of octave code with Babel."
|
2010-10-21 11:52:24 +00:00
|
|
|
(let* ((session
|
2010-07-03 02:21:31 +00:00
|
|
|
(funcall (intern (format "org-babel-%s-initiate-session"
|
|
|
|
(if matlabp "matlab" "octave")))
|
2010-10-21 11:52:24 +00:00
|
|
|
(cdr (assoc :session params)) params))
|
|
|
|
(vars (mapcar #'cdr (org-babel-get-header params :var)))
|
|
|
|
(result-params (cdr (assoc :result-params params)))
|
|
|
|
(result-type (cdr (assoc :result-type params)))
|
2010-03-18 18:45:39 +00:00
|
|
|
(out-file (cdr (assoc :file params)))
|
2010-10-21 11:18:43 +00:00
|
|
|
(full-body
|
|
|
|
(org-babel-expand-body:generic
|
|
|
|
body params (org-babel-variable-assignments:octave params)))
|
2010-07-04 20:48:41 +00:00
|
|
|
(result (org-babel-octave-evaluate
|
2011-12-16 19:12:39 +00:00
|
|
|
session
|
|
|
|
(if (org-babel-octave-graphical-output-file params)
|
|
|
|
(mapconcat 'identity
|
|
|
|
(list
|
|
|
|
"set (0, \"defaultfigurevisible\", \"off\");"
|
|
|
|
full-body
|
|
|
|
(format "print -dpng %s" (org-babel-octave-graphical-output-file params)))
|
|
|
|
"\n")
|
|
|
|
full-body)
|
|
|
|
result-type matlabp)))
|
|
|
|
(if (org-babel-octave-graphical-output-file params)
|
|
|
|
nil
|
|
|
|
(org-babel-reassemble-table
|
|
|
|
result
|
|
|
|
(org-babel-pick-name
|
|
|
|
(cdr (assoc :colname-names params)) (cdr (assoc :colnames params)))
|
|
|
|
(org-babel-pick-name
|
|
|
|
(cdr (assoc :rowname-names params)) (cdr (assoc :rownames params)))))))
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defun org-babel-prep-session:matlab (session params)
|
|
|
|
"Prepare SESSION according to PARAMS."
|
|
|
|
(org-babel-prep-session:octave session params 'matlab))
|
2010-08-01 18:34:28 +00:00
|
|
|
|
2010-10-21 11:18:43 +00:00
|
|
|
(defun org-babel-variable-assignments:octave (params)
|
2010-10-14 20:56:41 +00:00
|
|
|
"Return list of octave statements assigning the block's variables"
|
|
|
|
(mapcar
|
|
|
|
(lambda (pair)
|
2011-03-31 05:28:59 +00:00
|
|
|
(format "%s=%s;"
|
2010-10-14 20:56:41 +00:00
|
|
|
(car pair)
|
|
|
|
(org-babel-octave-var-to-octave (cdr pair))))
|
2010-10-16 03:35:45 +00:00
|
|
|
(mapcar #'cdr (org-babel-get-header params :var))))
|
2010-10-14 20:56:41 +00:00
|
|
|
|
2010-10-21 11:18:43 +00:00
|
|
|
(defalias 'org-babel-variable-assignments:matlab
|
|
|
|
'org-babel-variable-assignments:octave)
|
|
|
|
|
2010-03-18 18:45:39 +00:00
|
|
|
(defun org-babel-octave-var-to-octave (var)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Convert an emacs-lisp value into an octave variable.
|
2010-03-18 18:45:39 +00:00
|
|
|
Converts an emacs-lisp variable into a string of octave code
|
|
|
|
specifying a variable of the same value."
|
|
|
|
(if (listp var)
|
From: Juan <Pechiar@computer.org>
Hi,
I'm starting to work with ob-octave and found several problems:
The first, for which I have a fix (see patch below) is that octave's
output was passed on as a string instead of being interpreted as a table:
[diff removed]
Now this works:
8<------------------------------------------------------------
#+source: test_output
#+begin_src octave :results value vector
[[1 2 3];[4 5 6]]
#+end_src
#+results: test_output
| 1.00000000e+00 | 2.00000000e+00 | 3.00000000e+00 |
| 4.00000000e+00 | 5.00000000e+00 | 6.00000000e+00 |
8<------------------------------------------------------------
(before the patch you'd get a single table element with something like
"1 2 3\n 4 5 6\n" inside).
The second problem is that if I use octave table output as input to
another block, it gets interpreted as a string instead of a vector:
8<------------------------------------------------------------
#+results: test_output
| 1.25000000e+00 |
#+source: check_input
#+begin_src octave :var input=test_output() :results output
ischar( input )
size( input )
#+end_src
#+results: check_input
: input = 1.25000000e+00
: ans = 1
: ans =
: 1 14
8<------------------------------------------------------------
This has to do with the EXP notation. The 'e+00' suffix makes the
whole table into a string. The problem is with "%S" in the formatting
inside org-babel-octave-var-to-octave.
The following patch seems to fix it (and makes it possible to work with
complex numbers inside the tables)::
[diff removed]
A third problem is with org-babel-octave-var-to-octave.
For example:
: (org-babel-octave-var-to-octave '( ( 1 2 3 ) ( 4 5 6 ) ))
: -> "[[1, 2, 3], [4, 5, 6]]"
This is not a 2x3 matrix, but a 1x6 vector:
: octave-3.2.3:1> [[1,2,3],[4,5,6]]
: ans =
: 1 2 3 4 5 6
a semicolon ';' or '\n' is needed between rows instead of a comma.
To sum up:
- 2 patches for prepare-session and importing the results back as
org-tables (I don't know if these patches break anything).
- 1 problem with matrix notation in org-babel-octave-var-to-octave.
I'll try to provide a patch for this today.
2010-08-01 Juan Pechiar <Pechiar@computer.org>
* ob-octave.el (org-babel-octave-evaluate-external-process):
use `org-babel-octave-import-elisp-from-file' instead of
`org-babel-eval-read-file'.
(org-babel-octave-var-to-octave): separate matrix rows with
';', and use '%s' as format specifier instead of '%S'
2010-08-01 22:09:24 +00:00
|
|
|
(concat "[" (mapconcat #'org-babel-octave-var-to-octave var
|
|
|
|
(if (listp (car var)) "; " ",")) "]")
|
2011-11-08 21:19:04 +00:00
|
|
|
(cond
|
|
|
|
((stringp var)
|
|
|
|
(format "\'%s\'" var))
|
|
|
|
(t
|
|
|
|
(format "%s" var)))))
|
2010-03-18 18:45:39 +00:00
|
|
|
|
|
|
|
(defun org-babel-prep-session:octave (session params &optional matlabp)
|
|
|
|
"Prepare SESSION according to the header arguments specified in PARAMS."
|
|
|
|
(let* ((session (org-babel-octave-initiate-session session params matlabp))
|
2010-10-21 11:18:43 +00:00
|
|
|
(var-lines (org-babel-variable-assignments:octave params)))
|
2010-03-18 18:45:39 +00:00
|
|
|
(org-babel-comint-in-buffer session
|
|
|
|
(mapc (lambda (var)
|
Xemacs incompatibilities
Carsten Dominik <carsten.dominik@gmail.com> writes:
> On May 17, 2010, at 4:39 PM, Michael Sperber wrote:
>
>> In particular, fixing the require won't be enough: org-babel-python.el
>> uses `run-python' and interacts with the inferior Python, whereas
>> python-mode.el defines `py-shell'.
>>
>> Should I try to abstract over the differences?
>
> Yes, this would be much appreciated. (I think, Eric or Dan?)
OK, I've attached a patch that makes `org-babel-python' work on XEmacs.
Most of the issues are pure XEmacs issues. Notes:
- XEmacs doesn't have [[:digit:]] - I hope to rectify this in the
future, but it seems there's no downside in this particular case to
replacing by [0-9].
- XEmacs doesn't have `move-end-of-line', but does have `end-of-line'.
I don't understand the intent of having both of these, but the code
seems fine with `end-of-line'.
- It seems there are way too few `require's throughout org-babel. I
don't know if it's OK to add the ones I needed.
- `org-babel-python-evaluate' looked broken as-is: It doesn't use the
`body' argument properly, the result is (I think) processed in the
wrong order and not properly split into lines. I've fixed all these,
but a review is probably in order.
2010-05-24 19:22:50 +00:00
|
|
|
(end-of-line 1) (insert var) (comint-send-input nil t)
|
2010-03-18 18:45:39 +00:00
|
|
|
(org-babel-comint-wait-for-output session)) var-lines))
|
|
|
|
session))
|
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defun org-babel-matlab-initiate-session (&optional session params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Create a matlab inferior process buffer.
|
|
|
|
If there is not a current inferior-process-buffer in SESSION then
|
|
|
|
create. Return the initialized session."
|
2010-07-03 02:21:31 +00:00
|
|
|
(org-babel-octave-initiate-session session params 'matlab))
|
2010-08-01 18:34:28 +00:00
|
|
|
|
2010-03-18 18:45:39 +00:00
|
|
|
(defun org-babel-octave-initiate-session (&optional session params matlabp)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Create an octave inferior process buffer.
|
|
|
|
If there is not a current inferior-process-buffer in SESSION then
|
|
|
|
create. Return the initialized session."
|
2010-08-01 18:34:28 +00:00
|
|
|
(if matlabp (require 'matlab) (require 'octave-inf))
|
2010-03-18 18:45:39 +00:00
|
|
|
(unless (string= session "none")
|
2010-07-04 20:48:41 +00:00
|
|
|
(let ((session (or session
|
|
|
|
(if matlabp "*Inferior Matlab*" "*Inferior Octave*"))))
|
2010-03-18 18:45:39 +00:00
|
|
|
(if (org-babel-comint-buffer-livep session) session
|
|
|
|
(save-window-excursion
|
2010-04-30 20:47:07 +00:00
|
|
|
(if matlabp (unless org-babel-matlab-with-emacs-link (matlab-shell))
|
|
|
|
(run-octave))
|
2010-03-18 18:45:39 +00:00
|
|
|
(rename-buffer (if (bufferp session) (buffer-name session)
|
2010-07-04 20:48:41 +00:00
|
|
|
(if (stringp session) session (buffer-name))))
|
|
|
|
(current-buffer))))))
|
2010-03-18 18:45:39 +00:00
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defun org-babel-octave-evaluate
|
2010-08-01 16:17:47 +00:00
|
|
|
(session body result-type &optional matlabp)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Pass BODY to the octave process in SESSION.
|
|
|
|
If RESULT-TYPE equals 'output then return the outputs of the
|
|
|
|
statements in BODY, if RESULT-TYPE equals 'value then return the
|
|
|
|
value of the last statement in BODY, as elisp."
|
2010-03-18 18:45:39 +00:00
|
|
|
(if session
|
2010-07-04 20:48:41 +00:00
|
|
|
(org-babel-octave-evaluate-session session body result-type matlabp)
|
2010-03-18 18:45:39 +00:00
|
|
|
(org-babel-octave-evaluate-external-process body result-type matlabp)))
|
|
|
|
|
|
|
|
(defun org-babel-octave-evaluate-external-process (body result-type matlabp)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Evaluate BODY in an external octave process."
|
2010-07-04 20:48:41 +00:00
|
|
|
(let ((cmd (if matlabp
|
|
|
|
org-babel-matlab-shell-command
|
|
|
|
org-babel-octave-shell-command)))
|
|
|
|
(case result-type
|
|
|
|
(output (org-babel-eval cmd body))
|
2010-09-22 20:52:48 +00:00
|
|
|
(value (let ((tmp-file (org-babel-temp-file "octave-")))
|
2010-07-04 20:48:41 +00:00
|
|
|
(org-babel-eval
|
|
|
|
cmd
|
2010-09-22 20:40:14 +00:00
|
|
|
(format org-babel-octave-wrapper-method body
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)))
|
|
|
|
(org-babel-octave-import-elisp-from-file tmp-file))))))
|
2010-07-03 02:21:31 +00:00
|
|
|
|
|
|
|
(defun org-babel-octave-evaluate-session
|
|
|
|
(session body result-type &optional matlabp)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Evaluate BODY in SESSION."
|
2010-09-20 23:38:31 +00:00
|
|
|
(let* ((tmp-file (org-babel-temp-file (if matlabp "matlab-" "octave-")))
|
2010-08-25 20:43:07 +00:00
|
|
|
(wait-file (org-babel-temp-file "matlab-emacs-link-wait-signal-"))
|
2010-03-18 18:45:39 +00:00
|
|
|
(full-body
|
|
|
|
(case result-type
|
|
|
|
(output
|
|
|
|
(mapconcat
|
|
|
|
#'org-babel-chomp
|
|
|
|
(list body org-babel-octave-eoe-indicator) "\n"))
|
|
|
|
(value
|
2010-05-04 01:43:23 +00:00
|
|
|
(if (and matlabp org-babel-matlab-with-emacs-link)
|
|
|
|
(concat
|
|
|
|
(format org-babel-matlab-emacs-link-wrapper-method
|
2010-09-22 20:40:14 +00:00
|
|
|
body
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote) wait-file) "\n")
|
2010-05-04 01:43:23 +00:00
|
|
|
(mapconcat
|
|
|
|
#'org-babel-chomp
|
2010-07-03 02:21:31 +00:00
|
|
|
(list (format org-babel-octave-wrapper-method
|
2010-09-22 20:40:14 +00:00
|
|
|
body
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote))
|
2010-05-04 01:43:23 +00:00
|
|
|
org-babel-octave-eoe-indicator) "\n")))))
|
2010-03-19 01:04:25 +00:00
|
|
|
(raw (if (and matlabp org-babel-matlab-with-emacs-link)
|
|
|
|
(save-window-excursion
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert full-body)
|
2010-05-04 01:43:23 +00:00
|
|
|
(write-region "" 'ignored wait-file nil nil nil 'excl)
|
2010-03-19 01:04:25 +00:00
|
|
|
(matlab-shell-run-region (point-min) (point-max))
|
2010-05-04 01:43:23 +00:00
|
|
|
(message "Waiting for Matlab Emacs Link")
|
|
|
|
(while (file-exists-p wait-file) (sit-for 0.01))
|
2010-03-19 01:04:25 +00:00
|
|
|
"")) ;; matlab-shell-run-region doesn't seem to
|
|
|
|
;; make *matlab* buffer contents easily
|
|
|
|
;; available, so :results output currently
|
|
|
|
;; won't work
|
2010-06-12 22:57:38 +00:00
|
|
|
(org-babel-comint-with-output
|
2010-06-15 00:00:49 +00:00
|
|
|
(session
|
|
|
|
(if matlabp
|
|
|
|
org-babel-octave-eoe-indicator
|
|
|
|
org-babel-octave-eoe-output)
|
|
|
|
t full-body)
|
2010-03-19 01:04:25 +00:00
|
|
|
(insert full-body) (comint-send-input nil t)))) results)
|
2010-03-18 18:45:39 +00:00
|
|
|
(case result-type
|
|
|
|
(value
|
2010-09-22 20:40:14 +00:00
|
|
|
(org-babel-octave-import-elisp-from-file tmp-file))
|
2010-03-18 18:45:39 +00:00
|
|
|
(output
|
|
|
|
(progn
|
|
|
|
(setq results
|
|
|
|
(if matlabp
|
2010-07-03 02:21:31 +00:00
|
|
|
(cdr (reverse (delq "" (mapcar
|
|
|
|
#'org-babel-octave-read-string
|
|
|
|
(mapcar #'org-babel-trim raw)))))
|
2010-03-18 18:45:39 +00:00
|
|
|
(cdr (member org-babel-octave-eoe-output
|
2010-07-03 02:21:31 +00:00
|
|
|
(reverse (mapcar
|
|
|
|
#'org-babel-octave-read-string
|
|
|
|
(mapcar #'org-babel-trim raw)))))))
|
2010-03-18 18:45:39 +00:00
|
|
|
(mapconcat #'identity (reverse results) "\n"))))))
|
|
|
|
|
2010-04-07 19:51:04 +00:00
|
|
|
(defun org-babel-octave-import-elisp-from-file (file-name)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Import data from FILE-NAME.
|
|
|
|
This removes initial blank and comment lines and then calls
|
|
|
|
`org-babel-import-elisp-from-file'."
|
2010-09-20 23:38:31 +00:00
|
|
|
(let ((temp-file (org-babel-temp-file "octave-matlab-")) beg end)
|
2010-04-07 19:51:04 +00:00
|
|
|
(with-temp-file temp-file
|
|
|
|
(insert-file-contents file-name)
|
|
|
|
(re-search-forward "^[ \t]*[^# \t]" nil t)
|
2010-04-07 22:44:58 +00:00
|
|
|
(if (< (setq beg (point-min))
|
|
|
|
(setq end (point-at-bol)))
|
|
|
|
(delete-region beg end)))
|
2010-08-04 03:54:24 +00:00
|
|
|
(org-babel-import-elisp-from-file temp-file '(16))))
|
2010-04-07 19:51:04 +00:00
|
|
|
|
2010-03-18 18:45:39 +00:00
|
|
|
(defun org-babel-octave-read-string (string)
|
|
|
|
"Strip \\\"s from around octave string"
|
|
|
|
(if (string-match "^\"\\([^\000]+\\)\"$" string)
|
|
|
|
(match-string 1 string)
|
|
|
|
string))
|
|
|
|
|
2011-12-16 19:12:39 +00:00
|
|
|
(defun org-babel-octave-graphical-output-file (params)
|
|
|
|
"Name of file to which maxima should send graphical output."
|
|
|
|
(and (member "graphics" (cdr (assq :result-params params)))
|
|
|
|
(cdr (assq :file params))))
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-octave)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2011-08-15 18:04:38 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-octave.el ends here
|