org-babel.el 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. ;;; org-babel.el --- facilitating communication between programming languages and people
  2. ;; Copyright (C) 2009 Eric Schulte, Dan Davison
  3. ;; Author: Eric Schulte, Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; See org-babel.org in the parent directory for more information
  24. ;;; Code:
  25. (require 'org)
  26. (defun org-babel-execute-src-block-maybe ()
  27. "Detect if this is context for a org-babel src-block and if so
  28. then run `org-babel-execute-src-block'."
  29. (interactive)
  30. (let ((info (org-babel-get-src-block-info)))
  31. (if info (progn (org-babel-execute-src-block current-prefix-arg info) t) nil)))
  32. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-execute-src-block-maybe)
  33. (defun org-babel-pop-to-session-maybe ()
  34. "Detect if this is context for a org-babel src-block and if so
  35. then run `org-babel-pop-to-session'."
  36. (interactive)
  37. (let ((info (org-babel-get-src-block-info)))
  38. (if info (progn (org-babel-pop-to-session current-prefix-arg info) t) nil)))
  39. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  40. (defvar org-babel-default-header-args '((:session . "none"))
  41. "Default arguments to use when evaluating a source block.")
  42. (defvar org-babel-default-inline-header-args '((:results . "silent") (:exports . "results"))
  43. "Default arguments to use when evaluating an inline source block.")
  44. (defvar org-babel-src-block-regexp nil
  45. "Regexp used to test when inside of a org-babel src-block")
  46. (defvar org-babel-inline-src-block-regexp nil
  47. "Regexp used to test when on an inline org-babel src-block")
  48. (defun org-babel-named-src-block-regexp-for-name (name)
  49. "Regexp used to match named src block."
  50. (concat "#\\+srcname:[ \t]*" (regexp-quote name) "[ \t\n]*"
  51. org-babel-src-block-regexp))
  52. (defun org-babel-set-interpreters (var value)
  53. (set-default var value)
  54. (setq org-babel-src-block-regexp
  55. (concat "#\\+begin_src \\("
  56. (mapconcat 'regexp-quote value "\\|")
  57. "\\)[ \t]*"
  58. "\\([ \t]+\\([^\n]+\\)\\)?\n" ;; match header arguments
  59. "\\([^\000]+?\\)#\\+end_src"))
  60. (setq org-babel-inline-src-block-regexp
  61. (concat "src_\\("
  62. (mapconcat 'regexp-quote value "\\|")
  63. "\\)"
  64. "\\(\\|\\[\\(.*\\)\\]\\)"
  65. "{\\([^\n]+\\)}")))
  66. (defun org-babel-add-interpreter (interpreter)
  67. "Add INTERPRETER to `org-babel-interpreters' and update
  68. `org-babel-src-block-regexp' appropriately."
  69. (unless (member interpreter org-babel-interpreters)
  70. (setq org-babel-interpreters (cons interpreter org-babel-interpreters))
  71. ;; (add-to-list 'org-babel-session-defaults (cons interpreter (format "org-babel-%s" interpreter)))
  72. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  73. (defcustom org-babel-interpreters '()
  74. "Interpreters allows for evaluation tags.
  75. This is a list of program names (as strings) that can evaluate code and
  76. insert the output into an Org-mode buffer. Valid choices are
  77. R Evaluate R code
  78. emacs-lisp Evaluate Emacs Lisp code and display the result
  79. sh Pass command to the shell and display the result
  80. perl The perl interpreter
  81. python The python interpreter
  82. ruby The ruby interpreter
  83. The source block regexp `org-babel-src-block-regexp' is updated
  84. when a new interpreter is added to this list through the
  85. customize interface. To add interpreters to this variable from
  86. lisp code use the `org-babel-add-interpreter' function."
  87. :group 'org-babel
  88. :set 'org-babel-set-interpreters
  89. :type '(set :greedy t
  90. (const "R")
  91. (const "emacs-lisp")
  92. (const "sh")
  93. (const "perl")
  94. (const "python")
  95. (const "ruby")))
  96. ;;; functions
  97. (defun org-babel-pop-to-session (&optional arg info)
  98. "Pop to the session of the current source-code block. If
  99. called with a prefix argument then evaluate the header arguments
  100. for the source block before entering the session. Copy the body
  101. of the source block to the kill ring."
  102. (interactive)
  103. (let* ((info (or info (org-babel-get-src-block-info)))
  104. (lang (first info))
  105. (body (second info))
  106. (params (third info))
  107. (session (cdr (assoc :session params))))
  108. (unless (member lang org-babel-interpreters)
  109. (error "Language is not in `org-babel-interpreters': %s" lang))
  110. ;; copy body to the kill ring
  111. (with-temp-buffer (insert (org-babel-trim body)) (copy-region-as-kill (point-min) (point-max)))
  112. ;; if called with a prefix argument, then process header arguments
  113. (if arg (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  114. ;; just to the session using pop-to-buffer
  115. (pop-to-buffer (funcall (intern (format "org-babel-%s-initiate-session" lang)) session))
  116. (move-end-of-line 1)))
  117. (defun org-babel-execute-src-block (&optional arg info params)
  118. "Execute the current source code block, and dump the results
  119. into the buffer immediately following the block. Results are
  120. commented by `org-toggle-fixed-width-section'. With optional
  121. prefix don't dump results into buffer but rather return the
  122. results in raw elisp (this is useful for automated execution of a
  123. source block).
  124. Optionally supply a value for INFO in the form returned by
  125. `org-babel-get-src-block-info'.
  126. Optionally supply a value for PARAMS which will be merged with
  127. the header arguments specified at the source code block."
  128. (interactive)
  129. (let* ((info (or info (org-babel-get-src-block-info)))
  130. (lang (first info))
  131. (body (second info))
  132. (params (org-combine-plists params (third info)))
  133. (result-params (split-string (or (cdr (assoc :results params)) "")))
  134. (result-type (cond ((member "output" result-params) 'output)
  135. ((member "value" result-params) 'value)
  136. (t 'value)))
  137. (cmd (intern (concat "org-babel-execute:" lang)))
  138. result)
  139. (message (format "params=%S" params)) ;; debugging
  140. (unless (member lang org-babel-interpreters)
  141. (error "Language is not in `org-babel-interpreters': %s" lang))
  142. (setq result (org-babel-process-result (funcall cmd body params) result-type))
  143. (if arg
  144. (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  145. (org-babel-insert-result result (cdr (assoc :results params))))
  146. result))
  147. (defun org-babel-process-result (result result-type)
  148. "This doesn't do anything currently.
  149. You can see below the various fragments of results-processing
  150. code that where present in the language-specific files. Out of
  151. those fragments, I've moved the
  152. org-babel-python-table-or-results and
  153. org-babel-import-elisp-from-file functionality into the
  154. org-babel-*-evaluate functions. I think those should only be
  155. used in the :results value case, as in the 'output case we are
  156. not concerned with creating elisp versions of results.
  157. The rest of the functionality below, concerned with vectorising
  158. or scalarising results is commented out, has not yet been
  159. replaced, and may need to be reinstated in this function. "
  160. result)
  161. ;; ;; ruby
  162. ;; (if (member "scalar" result-params)
  163. ;; results
  164. ;; (case result-type ;; process results based on the result-type
  165. ;; ('output (let ((tmp-file (make-temp-file "org-babel-ruby")))
  166. ;; (with-temp-file tmp-file (insert results))
  167. ;; (org-babel-import-elisp-from-file tmp-file)))
  168. ;; ('value (org-babel-ruby-table-or-results results))))))
  169. ;; python
  170. ;; (if (member "scalar" result-params)
  171. ;; results
  172. ;; (setq result (case result-type ;; process results based on the result-type
  173. ;; ('output (let ((tmp-file (make-temp-file "org-babel-python")))
  174. ;; (with-temp-file tmp-file (insert results))
  175. ;; (org-babel-import-elisp-from-file tmp-file)))
  176. ;; ('value (org-babel-python-table-or-results results))))
  177. ;; (if (and (member "vector" results) (not (listp results)))
  178. ;; (list (list results))
  179. ;; results))))
  180. ;; ;; sh
  181. ;; (if (member "scalar" result-params)
  182. ;; results
  183. ;; (setq results (let ((tmp-file (make-temp-file "org-babel-shell")))
  184. ;; (with-temp-file tmp-file (insert results))
  185. ;; (org-babel-import-elisp-from-file tmp-file)))
  186. ;; (if (and (member "vector" results) (not (listp results)))
  187. ;; (list (list results))
  188. ;; results))))
  189. ;; ;; R
  190. ;; (setq results (if (member "scalar" result-params)
  191. ;; results
  192. ;; (let ((tmp-file (make-temp-file "org-babel-R")))
  193. ;; (with-temp-file tmp-file (insert results))
  194. ;; (org-babel-import-elisp-from-file tmp-file))))
  195. ;; (if (and (member "vector" result-params) (not (listp results)))
  196. ;; (list (list results))
  197. ;; results))))
  198. ;; ;; rest of org-babel-execute-src-block
  199. ;; ;; possibly force result into a vector
  200. ;; (if (and (not (listp result)) (cdr (assoc :results params))
  201. ;; (member "vector" (split-string (cdr (assoc :results params)))))
  202. ;; (setq result (list result)))
  203. ;; result))
  204. (defun org-babel-eval-buffer (&optional arg)
  205. "Replace EVAL snippets in the entire buffer."
  206. (interactive "P")
  207. (save-excursion
  208. (goto-char (point-min))
  209. (while (re-search-forward org-babel-regexp nil t)
  210. (org-babel-eval-src-block arg))))
  211. (defun org-babel-eval-subtree (&optional arg)
  212. "Replace EVAL snippets in the entire subtree."
  213. (interactive "P")
  214. (save-excursion
  215. (org-narrow-to-subtree)
  216. (org-babel-eval-buffer)
  217. (widen)))
  218. (defun org-babel-get-src-block-name ()
  219. "Return the name of the current source block if one exists"
  220. (let ((case-fold-search t))
  221. (save-excursion
  222. (goto-char (org-babel-where-is-src-block-head))
  223. (if (save-excursion (forward-line -1)
  224. (looking-at "#\\+srcname:[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+\\)"))
  225. (org-babel-clean-text-properties (match-string 1))))))
  226. (defun org-babel-get-src-block-info ()
  227. "Return the information of the current source block as a list
  228. of the following form. (language body header-arguments-alist)"
  229. (let ((case-fold-search t) head)
  230. (if (setq head (org-babel-where-is-src-block-head))
  231. (save-excursion (goto-char head) (org-babel-parse-src-block-match))
  232. (if (save-excursion ;; inline source block
  233. (re-search-backward "[ \f\t\n\r\v]" nil t)
  234. (forward-char 1)
  235. (looking-at org-babel-inline-src-block-regexp))
  236. (org-babel-parse-inline-src-block-match)
  237. nil)))) ;; indicate that no source block was found
  238. (defmacro org-babel-map-source-blocks (file &rest body)
  239. "Evaluate BODY forms on each source-block in FILE."
  240. (declare (indent 1))
  241. `(save-window-excursion
  242. (find-file ,file) (goto-char (point-min))
  243. (while (re-search-forward org-babel-src-block-regexp nil t)
  244. (goto-char (match-beginning 0))
  245. (save-match-data ,@body)
  246. (goto-char (match-end 0)))))
  247. (defun org-babel-parse-src-block-match ()
  248. (list (org-babel-clean-text-properties (match-string 1))
  249. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  250. (org-combine-plists org-babel-default-header-args
  251. (org-babel-parse-header-arguments
  252. (org-babel-clean-text-properties (or (match-string 3) ""))))))
  253. (defun org-babel-parse-inline-src-block-match ()
  254. (list (org-babel-clean-text-properties (match-string 1))
  255. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  256. (org-combine-plists org-babel-default-inline-header-args
  257. (org-babel-parse-header-arguments
  258. (org-babel-clean-text-properties (or (match-string 3) ""))))))
  259. (defun org-babel-parse-header-arguments (arg-string)
  260. "Parse a string of header arguments returning an alist."
  261. (delq nil
  262. (mapcar
  263. (lambda (arg)
  264. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  265. (cons (intern (concat ":" (match-string 1 arg)))
  266. (org-babel-chomp (match-string 2 arg)))
  267. (cons (intern (concat ":" arg)) nil)))
  268. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t))))
  269. (defun org-babel-where-is-src-block-head ()
  270. "Return the point at the beginning of the current source
  271. block. Specifically at the beginning of the #+BEGIN_SRC line.
  272. If the point is not on a source block then return nil."
  273. (let ((initial (point)) top bottom)
  274. (or
  275. (save-excursion ;; on a #+srcname: line
  276. (beginning-of-line 1)
  277. (and (looking-at "#\\+srcname") (forward-line 1)
  278. (looking-at org-babel-src-block-regexp)
  279. (point)))
  280. (save-excursion ;; on a #+begin_src line
  281. (beginning-of-line 1)
  282. (and (looking-at org-babel-src-block-regexp)
  283. (point)))
  284. (save-excursion ;; inside a src block
  285. (and
  286. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  287. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  288. (< top initial) (< initial bottom)
  289. (goto-char top) (looking-at org-babel-src-block-regexp)
  290. (point))))))
  291. (defun org-babel-goto-named-source-block (&optional name)
  292. "Go to a named source-code block."
  293. (interactive "ssource-block name: ")
  294. (let ((point (org-babel-find-named-block name)))
  295. (if point
  296. ;; taken from `org-open-at-point'
  297. (progn (goto-char point) (org-show-context))
  298. (message "source-code block '%s' not found in this buffer" name))))
  299. (defun org-babel-find-named-block (name)
  300. "Find a named source-code block.
  301. Return the location of the source block identified by
  302. #+srcname NAME, or nil if no such block exists. Set match data
  303. according to org-babel-named-src-block-regexp."
  304. (save-excursion
  305. (let ((case-fold-search t)
  306. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  307. (goto-char (point-min))
  308. (when (or (re-search-forward regexp nil t)
  309. (re-search-backward regexp nil t))
  310. (match-beginning 0)))))
  311. (defun org-babel-find-named-result (name)
  312. "Return the location of the result named NAME in the current
  313. buffer or nil if no such result exists."
  314. (save-excursion
  315. (goto-char (point-min))
  316. (when (re-search-forward (concat "#\\+resname:[ \t]*" (regexp-quote name)) nil t)
  317. (move-beginning-of-line 1) (point))))
  318. (defun org-babel-where-is-src-block-result ()
  319. "Return the point at the beginning of the result of the current
  320. source block. Specifically at the beginning of the #+RESNAME:
  321. line. If no result exists for this block then create a
  322. #+RESNAME: line following the source block."
  323. (save-excursion
  324. (goto-char (org-babel-where-is-src-block-head))
  325. (let ((name (org-babel-get-src-block-name)) end head)
  326. (or (and name (message name) (org-babel-find-named-result name))
  327. (and (re-search-forward "#\\+end_src" nil t)
  328. (progn (move-end-of-line 1)
  329. (if (eobp) (insert "\n") (forward-char 1))
  330. (setq end (point))
  331. (or (progn ;; either an unnamed #+resname: line already exists
  332. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  333. (move-beginning-of-line 1) (looking-at "#\\+resname:"))
  334. (progn ;; or we need to back up and make one ourselves
  335. (goto-char end) (open-line 2) (forward-char 1)
  336. (insert (concat "#+resname:" (if name (concat " " name))))
  337. (move-beginning-of-line 1) t)))
  338. (point))))))
  339. (defun org-babel-insert-result (result &optional insert)
  340. "Insert RESULT into the current buffer after the end of the
  341. current source block. With optional argument INSERT controls
  342. insertion of results in the org-mode file. INSERT can take the
  343. following values...
  344. t ------ the default options, simply insert the results after the
  345. source block
  346. replace - insert results after the source block replacing any
  347. previously inserted results
  348. silent -- no results are inserted"
  349. (if insert (setq insert (split-string insert)))
  350. (if (stringp result)
  351. (progn
  352. (setq result (org-babel-clean-text-properties result))
  353. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  354. (unless (listp result) (setq result (format "%S" result))))
  355. (if (and insert (member "replace" insert)) (org-babel-remove-result))
  356. (if (= (length result) 0)
  357. (message "no result returned by source block")
  358. (if (and insert (member "silent" insert))
  359. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  360. (when (and (stringp result) ;; ensure results end in a newline
  361. (not (or (string-equal (substring result -1) "\n")
  362. (string-equal (substring result -1) "\r"))))
  363. (setq result (concat result "\n")))
  364. (save-excursion
  365. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  366. (if (stringp result) ;; assume the result is a table if it's not a string
  367. (if (member "file" insert)
  368. (insert result)
  369. (org-babel-examplize-region (point) (progn (insert result) (point))))
  370. (progn
  371. (insert
  372. (concat (orgtbl-to-orgtbl
  373. (if (consp (car result)) result (list result))
  374. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  375. (forward-line -1)
  376. (org-cycle))))
  377. (message "finished"))))
  378. (defun org-babel-result-to-org-string (result)
  379. "Return RESULT as a string in org-mode format. This function
  380. relies on `org-babel-insert-result'."
  381. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  382. (defun org-babel-remove-result ()
  383. "Remove the result of the current source block."
  384. (interactive)
  385. (save-excursion
  386. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  387. (delete-region (point) (org-babel-result-end))))
  388. (defun org-babel-result-end ()
  389. "Return the point at the end of the current set of results"
  390. (save-excursion
  391. (if (org-at-table-p)
  392. (org-table-end)
  393. (while (if (looking-at "\\(: \\|\\[\\[\\)")
  394. (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  395. (forward-line 1)) t))
  396. (forward-line 1))
  397. (forward-line -1)
  398. (point))))
  399. (defun org-babel-result-to-file (result)
  400. "Return an `org-mode' link with the path being the value or
  401. RESULT, and the display being the `file-name-nondirectory' if
  402. non-nil."
  403. (let ((name (file-name-nondirectory result)))
  404. (concat "[[" result (if name (concat "][" name "]]") "]]"))))
  405. (defun org-babel-examplize-region (beg end)
  406. "Comment out region using the ': ' org example quote."
  407. (interactive "*r")
  408. (let ((size (abs (- (line-number-at-pos end)
  409. (line-number-at-pos beg)))))
  410. (if (= size 0)
  411. (let ((result (buffer-substring beg end)))
  412. (delete-region beg end)
  413. (insert (concat ": " result)))
  414. (save-excursion
  415. (goto-char beg)
  416. (dotimes (n size)
  417. (move-beginning-of-line 1) (insert ": ") (forward-line 1))))))
  418. (defun org-babel-clean-text-properties (text)
  419. "Strip all properties from text return."
  420. (set-text-properties 0 (length text) nil text) text)
  421. (defun org-babel-strip-protective-commas (body)
  422. "Strip protective commas from bodies of source blocks."
  423. (replace-regexp-in-string "^,#" "#" body))
  424. (defun org-babel-read (cell)
  425. "Convert the string value of CELL to a number if appropriate.
  426. Otherwise if cell looks like a list (meaning it starts with a
  427. '(') then read it as lisp, otherwise return it unmodified as a
  428. string.
  429. This is taken almost directly from `org-read-prop'."
  430. (if (and (stringp cell) (not (equal cell "")))
  431. (or (org-babel-number-p cell)
  432. (if (or (equal "(" (substring cell 0 1))
  433. (equal "'" (substring cell 0 2)))
  434. (read cell)
  435. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  436. cell))
  437. (defun org-babel-number-p (string)
  438. "Return t if STRING represents a number"
  439. (if (string-match "^[[:digit:]]*\\.?[[:digit:]]*$" string)
  440. (string-to-number string)))
  441. (defun org-babel-import-elisp-from-file (file-name)
  442. "Read the results located at FILE-NAME into an elisp table. If
  443. the table is trivial, then return it as a scalar."
  444. (let (result)
  445. (with-temp-buffer
  446. (condition-case nil
  447. (progn
  448. (org-table-import file-name nil)
  449. (delete-file file-name)
  450. (setq result (mapcar (lambda (row)
  451. (mapcar #'org-babel-string-read row))
  452. (org-table-to-lisp))))
  453. (error nil))
  454. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  455. (if (consp (car result))
  456. (if (null (cdr (car result)))
  457. (caar result)
  458. result)
  459. (car result))
  460. result))))
  461. (defun org-babel-string-read (cell)
  462. "Strip nested \"s from around strings in exported R values."
  463. (org-babel-read (or (and (stringp cell)
  464. (string-match "\\\"\\(.+\\)\\\"" cell)
  465. (match-string 1 cell))
  466. cell)))
  467. (defun org-babel-reverse-string (string)
  468. (apply 'string (reverse (string-to-list string))))
  469. (defun org-babel-chomp (string &optional regexp)
  470. "Remove any trailing space or carriage returns characters from
  471. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  472. overwritten by specifying a regexp as a second argument."
  473. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  474. (setq string (substring string 0 -1)))
  475. string)
  476. (defun org-babel-trim (string &optional regexp)
  477. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  478. (org-babel-chomp (org-babel-reverse-string
  479. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  480. (provide 'org-babel)
  481. ;;; org-babel.el ends here