1 ;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation
3 ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Org-Babel support for evaluating emacs-lisp code
31 (eval-when-compile (require 'ob-comint
))
33 (defvar org-babel-default-header-args
:emacs-lisp
34 '((:hlines .
"yes") (:colnames .
"no"))
35 "Default arguments for evaluating an emacs-lisp source block.")
37 (declare-function orgtbl-to-generic
"org-table" (table params
))
39 (defun org-babel-expand-body:emacs-lisp
(body params
&optional processed-params
)
40 "Expand BODY according to PARAMS, return the expanded body."
41 (let* ((processed-params (or processed-params
(org-babel-process-params params
)))
42 (vars (nth 1 processed-params
))
43 (result-params (nth 2 processed-params
))
44 (print-level nil
) (print-length nil
)
45 (body (if (> (length vars
) 0)
48 (lambda (var) (format "%S" (print `(,(car var
) ',(cdr var
)))))
52 (if (or (member "code" result-params
)
53 (member "pp" result-params
))
54 (concat "(pp " body
")") body
)))
56 (defun org-babel-execute:emacs-lisp
(body params
)
57 "Execute a block of emacs-lisp code with Babel."
58 (save-window-excursion
59 (let ((processed-params (org-babel-process-params params
)))
60 (org-babel-reassemble-table
61 (eval (read (format "(progn %s)"
62 (org-babel-expand-body:emacs-lisp
63 body params processed-params
))))
64 (org-babel-pick-name (nth 4 processed-params
) (cdr (assoc :colnames params
)))
65 (org-babel-pick-name (nth 5 processed-params
) (cdr (assoc :rownames params
)))))))
67 (provide 'ob-emacs-lisp
)
69 ;; arch-tag: e9a3acca-dc84-472a-9f5a-23c35befbcd6
71 ;;; ob-emacs-lisp.el ends here