ob-tangle.el 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. ;;; ob-tangle.el --- extract source code from org-mode files
  2. ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. ;;; Commentary:
  18. ;; Extract the code from source blocks out into raw source-code files.
  19. ;;; Code:
  20. (require 'org-src)
  21. (eval-when-compile
  22. (require 'cl))
  23. (declare-function org-link-escape "org" (text &optional table))
  24. (declare-function org-heading-components "org" ())
  25. (declare-function org-back-to-heading "org" (invisible-ok))
  26. (declare-function org-fill-template "org" (template alist))
  27. (declare-function org-babel-update-block-body "org" (new-body))
  28. (declare-function make-directory "files" (dir &optional parents))
  29. (defcustom org-babel-tangle-lang-exts
  30. '(("emacs-lisp" . "el"))
  31. "Alist mapping languages to their file extensions.
  32. The key is the language name, the value is the string that should
  33. be inserted as the extension commonly used to identify files
  34. written in this language. If no entry is found in this list,
  35. then the name of the language is used."
  36. :group 'org-babel-tangle
  37. :version "24.1"
  38. :type '(repeat
  39. (cons
  40. (string "Language name")
  41. (string "File Extension"))))
  42. (defcustom org-babel-post-tangle-hook nil
  43. "Hook run in code files tangled by `org-babel-tangle'."
  44. :group 'org-babel
  45. :version "24.1"
  46. :type 'hook)
  47. (defcustom org-babel-pre-tangle-hook '(save-buffer)
  48. "Hook run at the beginning of `org-babel-tangle'."
  49. :group 'org-babel
  50. :version "24.1"
  51. :type 'hook)
  52. (defcustom org-babel-tangle-body-hook nil
  53. "Hook run over the contents of each code block body."
  54. :group 'org-babel
  55. :version "24.1"
  56. :type 'hook)
  57. (defcustom org-babel-tangle-comment-format-beg "[[%link][%source-name]]"
  58. "Format of inserted comments in tangled code files.
  59. The following format strings can be used to insert special
  60. information into the output using `org-fill-template'.
  61. %start-line --- the line number at the start of the code block
  62. %file --------- the file from which the code block was tangled
  63. %link --------- Org-mode style link to the code block
  64. %source-name -- name of the code block
  65. Whether or not comments are inserted during tangling is
  66. controlled by the :comments header argument."
  67. :group 'org-babel
  68. :version "24.1"
  69. :type 'string)
  70. (defcustom org-babel-tangle-comment-format-end "%source-name ends here"
  71. "Format of inserted comments in tangled code files.
  72. The following format strings can be used to insert special
  73. information into the output using `org-fill-template'.
  74. %start-line --- the line number at the start of the code block
  75. %file --------- the file from which the code block was tangled
  76. %link --------- Org-mode style link to the code block
  77. %source-name -- name of the code block
  78. Whether or not comments are inserted during tangling is
  79. controlled by the :comments header argument."
  80. :group 'org-babel
  81. :version "24.1"
  82. :type 'string)
  83. (defcustom org-babel-process-comment-text #'org-babel-trim
  84. "Function called to process raw Org-mode text collected to be
  85. inserted as comments in tangled source-code files. The function
  86. should take a single string argument and return a string
  87. result. The default value is `org-babel-trim'."
  88. :group 'org-babel
  89. :version "24.1"
  90. :type 'function)
  91. (defun org-babel-find-file-noselect-refresh (file)
  92. "Find file ensuring that the latest changes on disk are
  93. represented in the file."
  94. (find-file-noselect file)
  95. (with-current-buffer (get-file-buffer file)
  96. (revert-buffer t t t)))
  97. (defmacro org-babel-with-temp-filebuffer (file &rest body)
  98. "Open FILE into a temporary buffer execute BODY there like
  99. `progn', then kill the FILE buffer returning the result of
  100. evaluating BODY."
  101. (declare (indent 1))
  102. (let ((temp-path (make-symbol "temp-path"))
  103. (temp-result (make-symbol "temp-result"))
  104. (temp-file (make-symbol "temp-file"))
  105. (visited-p (make-symbol "visited-p")))
  106. `(let* ((,temp-path ,file)
  107. (,visited-p (get-file-buffer ,temp-path))
  108. ,temp-result ,temp-file)
  109. (org-babel-find-file-noselect-refresh ,temp-path)
  110. (setf ,temp-file (get-file-buffer ,temp-path))
  111. (with-current-buffer ,temp-file
  112. (setf ,temp-result (progn ,@body)))
  113. (unless ,visited-p (kill-buffer ,temp-file))
  114. ,temp-result)))
  115. (def-edebug-spec org-babel-with-temp-filebuffer (form body))
  116. ;;;###autoload
  117. (defun org-babel-load-file (file &optional compile)
  118. "Load Emacs Lisp source code blocks in the Org-mode FILE.
  119. This function exports the source code using `org-babel-tangle'
  120. and then loads the resulting file using `load-file'. With prefix
  121. arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
  122. file to byte-code before it is loaded."
  123. (interactive "fFile to load: \nP")
  124. (let* ((age (lambda (file)
  125. (float-time
  126. (time-subtract (current-time)
  127. (nth 5 (or (file-attributes (file-truename file))
  128. (file-attributes file)))))))
  129. (base-name (file-name-sans-extension file))
  130. (exported-file (concat base-name ".el")))
  131. ;; tangle if the org-mode file is newer than the elisp file
  132. (unless (and (file-exists-p exported-file)
  133. (> (funcall age file) (funcall age exported-file)))
  134. (org-babel-tangle-file file exported-file "emacs-lisp"))
  135. (message "%s %s"
  136. (if compile
  137. (progn (byte-compile-file exported-file 'load)
  138. "Compiled and loaded")
  139. (progn (load-file exported-file) "Loaded"))
  140. exported-file)))
  141. ;;;###autoload
  142. (defun org-babel-tangle-file (file &optional target-file lang)
  143. "Extract the bodies of source code blocks in FILE.
  144. Source code blocks are extracted with `org-babel-tangle'.
  145. Optional argument TARGET-FILE can be used to specify a default
  146. export file for all source blocks. Optional argument LANG can be
  147. used to limit the exported source code blocks by language."
  148. (interactive "fFile to tangle: \nP")
  149. (let ((visited-p (get-file-buffer (expand-file-name file)))
  150. to-be-removed)
  151. (save-window-excursion
  152. (find-file file)
  153. (setq to-be-removed (current-buffer))
  154. (org-babel-tangle nil target-file lang))
  155. (unless visited-p
  156. (kill-buffer to-be-removed))))
  157. (defun org-babel-tangle-publish (_ filename pub-dir)
  158. "Tangle FILENAME and place the results in PUB-DIR."
  159. (mapc (lambda (el) (copy-file el pub-dir t)) (org-babel-tangle-file filename)))
  160. ;;;###autoload
  161. (defun org-babel-tangle (arg &optional target-file lang)
  162. "Write code blocks to source-specific files.
  163. Extract the bodies of all source code blocks from the current
  164. file into their own source-specific files.
  165. With one universal prefix argument, only tangle the block at point.
  166. When two universal prefix arguments, only tangle blocks for the
  167. tangle file of the block at point.
  168. Optional argument TARGET-FILE can be used to specify a default
  169. export file for all source blocks. Optional argument LANG can be
  170. used to limit the exported source code blocks by language."
  171. (interactive "P")
  172. (run-hooks 'org-babel-pre-tangle-hook)
  173. ;; Possibly Restrict the buffer to the current code block
  174. (save-restriction
  175. (when (equal arg '(4))
  176. (unless (org-babel-where-is-src-block-head)
  177. (error "Point is not currently inside of a code block"))
  178. (save-match-data
  179. (unless (or (cdr (assoc :tangle (nth 2 (org-babel-get-src-block-info))))
  180. target-file)
  181. (setq target-file
  182. (read-from-minibuffer "Tangle to: " (buffer-file-name)))))
  183. (narrow-to-region
  184. (save-match-data
  185. (save-excursion
  186. (goto-char (org-babel-where-is-src-block-head))
  187. (while (and (forward-line -1)
  188. (looking-at org-babel-multi-line-header-regexp)))
  189. (point)))
  190. (match-end 0)))
  191. (save-excursion
  192. (let ((block-counter 0)
  193. (org-babel-default-header-args
  194. (if target-file
  195. (org-babel-merge-params org-babel-default-header-args
  196. (list (cons :tangle target-file)))
  197. org-babel-default-header-args))
  198. (tangle-file
  199. (when (equal arg '(16))
  200. (or (cdr (assoc :tangle (nth 2 (org-babel-get-src-block-info))))
  201. (read-from-minibuffer "Tangle to: " (buffer-file-name)))))
  202. path-collector)
  203. (mapc ;; map over all languages
  204. (lambda (by-lang)
  205. (let* ((lang (car by-lang))
  206. (specs (cdr by-lang))
  207. (ext (or (cdr (assoc lang org-babel-tangle-lang-exts)) lang))
  208. (lang-f (intern
  209. (concat
  210. (or (and (cdr (assoc lang org-src-lang-modes))
  211. (symbol-name
  212. (cdr (assoc lang org-src-lang-modes))))
  213. lang)
  214. "-mode")))
  215. she-banged)
  216. (mapc
  217. (lambda (spec)
  218. (let ((get-spec (lambda (name) (cdr (assoc name (nth 4 spec))))))
  219. (let* ((tangle (funcall get-spec :tangle))
  220. (she-bang ((lambda (sheb) (when (> (length sheb) 0) sheb))
  221. (funcall get-spec :shebang)))
  222. (base-name (cond
  223. ((string= "yes" tangle)
  224. (file-name-sans-extension
  225. (buffer-file-name)))
  226. ((string= "no" tangle) nil)
  227. ((> (length tangle) 0) tangle)))
  228. (file-name (when base-name
  229. ;; decide if we want to add ext to base-name
  230. (if (and ext (string= "yes" tangle))
  231. (concat base-name "." ext) base-name))))
  232. (when file-name
  233. ;; possibly create the parent directories for file
  234. (when ((lambda (m) (and m (not (string= m "no"))))
  235. (funcall get-spec :mkdirp))
  236. (make-directory (file-name-directory file-name) 'parents))
  237. ;; delete any old versions of file
  238. (when (and (file-exists-p file-name)
  239. (not (member file-name path-collector)))
  240. (delete-file file-name))
  241. ;; drop source-block to file
  242. (with-temp-buffer
  243. (when (fboundp lang-f) (ignore-errors (funcall lang-f)))
  244. (when (and she-bang (not (member file-name she-banged)))
  245. (insert (concat she-bang "\n"))
  246. (setq she-banged (cons file-name she-banged)))
  247. (org-babel-spec-to-string spec)
  248. ;; We avoid append-to-file as it does not work with tramp.
  249. (let ((content (buffer-string)))
  250. (with-temp-buffer
  251. (if (file-exists-p file-name)
  252. (insert-file-contents file-name))
  253. (goto-char (point-max))
  254. (insert content)
  255. (write-region nil nil file-name))))
  256. ;; if files contain she-bangs, then make the executable
  257. (when she-bang (set-file-modes file-name #o755))
  258. ;; update counter
  259. (setq block-counter (+ 1 block-counter))
  260. (add-to-list 'path-collector file-name)))))
  261. specs)))
  262. (org-babel-tangle-collect-blocks lang tangle-file))
  263. (message "Tangled %d code block%s from %s" block-counter
  264. (if (= block-counter 1) "" "s")
  265. (file-name-nondirectory
  266. (buffer-file-name (or (buffer-base-buffer) (current-buffer)))))
  267. ;; run `org-babel-post-tangle-hook' in all tangled files
  268. (when org-babel-post-tangle-hook
  269. (mapc
  270. (lambda (file)
  271. (org-babel-with-temp-filebuffer file
  272. (run-hooks 'org-babel-post-tangle-hook)))
  273. path-collector))
  274. path-collector))))
  275. (defun org-babel-tangle-clean ()
  276. "Remove comments inserted by `org-babel-tangle'.
  277. Call this function inside of a source-code file generated by
  278. `org-babel-tangle' to remove all comments inserted automatically
  279. by `org-babel-tangle'. Warning, this comment removes any lines
  280. containing constructs which resemble org-mode file links or noweb
  281. references."
  282. (interactive)
  283. (goto-char (point-min))
  284. (while (or (re-search-forward "\\[\\[file:.*\\]\\[.*\\]\\]" nil t)
  285. (re-search-forward (org-babel-noweb-wrap) nil t))
  286. (delete-region (save-excursion (beginning-of-line 1) (point))
  287. (save-excursion (end-of-line 1) (forward-char 1) (point)))))
  288. (defvar org-stored-links)
  289. (defvar org-bracket-link-regexp)
  290. (defun org-babel-spec-to-string (spec)
  291. "Insert SPEC into the current file.
  292. Insert the source-code specified by SPEC into the current source
  293. code file. This function uses `comment-region' which assumes
  294. that the appropriate major-mode is set. SPEC has the form:
  295. \(start-line file link source-name params body comment)"
  296. (let* ((start-line (nth 0 spec))
  297. (file (nth 1 spec))
  298. (link (nth 2 spec))
  299. (source-name (nth 3 spec))
  300. (body (nth 5 spec))
  301. (comment (nth 6 spec))
  302. (comments (cdr (assoc :comments (nth 4 spec))))
  303. (padline (not (string= "no" (cdr (assoc :padline (nth 4 spec))))))
  304. (link-p (or (string= comments "both") (string= comments "link")
  305. (string= comments "yes") (string= comments "noweb")))
  306. (link-data (mapcar (lambda (el)
  307. (cons (symbol-name el)
  308. ((lambda (le)
  309. (if (stringp le) le (format "%S" le)))
  310. (eval el))))
  311. '(start-line file link source-name)))
  312. (insert-comment (lambda (text)
  313. (when (and comments (not (string= comments "no"))
  314. (> (length text) 0))
  315. (when padline (insert "\n"))
  316. (comment-region (point) (progn (insert text) (point)))
  317. (end-of-line nil) (insert "\n")))))
  318. (when comment (funcall insert-comment comment))
  319. (when link-p
  320. (funcall
  321. insert-comment
  322. (org-fill-template org-babel-tangle-comment-format-beg link-data)))
  323. (when padline (insert "\n"))
  324. (insert
  325. (format
  326. "%s\n"
  327. (org-unescape-code-in-string
  328. (org-babel-trim body (if org-src-preserve-indentation "[\f\n\r\v]")))))
  329. (when link-p
  330. (funcall
  331. insert-comment
  332. (org-fill-template org-babel-tangle-comment-format-end link-data)))))
  333. (defvar org-comment-string) ;; Defined in org.el
  334. (defun org-babel-tangle-collect-blocks (&optional lang tangle-file)
  335. "Collect source blocks in the current Org-mode file.
  336. Return an association list of source-code block specifications of
  337. the form used by `org-babel-spec-to-string' grouped by language.
  338. Optional argument LANG can be used to limit the collected source
  339. code blocks by language. Optional argument TANGLE-FILE can be
  340. used to limit the collected code blocks by target file."
  341. (let ((block-counter 1) (current-heading "") blocks)
  342. (org-babel-map-src-blocks (buffer-file-name)
  343. (lambda (new-heading)
  344. (if (not (string= new-heading current-heading))
  345. (progn
  346. (setq block-counter 1)
  347. (setq current-heading new-heading))
  348. (setq block-counter (+ 1 block-counter))))
  349. (replace-regexp-in-string "[ \t]" "-"
  350. (condition-case nil
  351. (or (nth 4 (org-heading-components))
  352. "(dummy for heading without text)")
  353. (error (buffer-file-name))))
  354. (let* ((start-line
  355. (save-restriction (widen) (+ 1 (line-number-at-pos (point)))))
  356. (file (buffer-file-name))
  357. (info (org-babel-get-src-block-info 'light))
  358. (src-lang (nth 0 info))
  359. (src-tfile (cdr (assoc :tangle (nth 2 info)))))
  360. (unless (or (string-match (concat "^" org-comment-string) current-heading)
  361. (string= (cdr (assoc :tangle (nth 2 info))) "no")
  362. (and tangle-file (not (equal tangle-file src-tfile))))
  363. (unless (and lang (not (string= lang src-lang)))
  364. (let* ((info (org-babel-get-src-block-info))
  365. (params (nth 2 info))
  366. (extra (nth 3 info))
  367. (cref-fmt (or (and (string-match "-l \"\\(.+\\)\"" extra)
  368. (match-string 1 extra))
  369. org-coderef-label-format))
  370. (link ((lambda (link)
  371. (and (string-match org-bracket-link-regexp link)
  372. (match-string 1 link)))
  373. (org-no-properties
  374. (org-store-link nil))))
  375. (source-name
  376. (intern (or (nth 4 info)
  377. (format "%s:%d"
  378. current-heading block-counter))))
  379. (expand-cmd
  380. (intern (concat "org-babel-expand-body:" src-lang)))
  381. (assignments-cmd
  382. (intern (concat "org-babel-variable-assignments:" src-lang)))
  383. (body
  384. ((lambda (body) ;; Run the tangle-body-hook
  385. (with-temp-buffer
  386. (insert body)
  387. (when (string-match "-r" extra)
  388. (goto-char (point-min))
  389. (while (re-search-forward
  390. (replace-regexp-in-string "%s" ".+" cref-fmt) nil t)
  391. (replace-match "")))
  392. (run-hooks 'org-babel-tangle-body-hook)
  393. (buffer-string)))
  394. ((lambda (body) ;; Expand the body in language specific manner
  395. (if (assoc :no-expand params)
  396. body
  397. (if (fboundp expand-cmd)
  398. (funcall expand-cmd body params)
  399. (org-babel-expand-body:generic
  400. body params
  401. (and (fboundp assignments-cmd)
  402. (funcall assignments-cmd params))))))
  403. (if (org-babel-noweb-p params :tangle)
  404. (org-babel-expand-noweb-references info)
  405. (nth 1 info)))))
  406. (comment
  407. (when (or (string= "both" (cdr (assoc :comments params)))
  408. (string= "org" (cdr (assoc :comments params))))
  409. ;; From the previous heading or code-block end
  410. (funcall
  411. org-babel-process-comment-text
  412. (buffer-substring
  413. (max (condition-case nil
  414. (save-excursion
  415. (org-back-to-heading t) ; Sets match data
  416. (match-end 0))
  417. (error (point-min)))
  418. (save-excursion
  419. (if (re-search-backward
  420. org-babel-src-block-regexp nil t)
  421. (match-end 0)
  422. (point-min))))
  423. (point)))))
  424. by-lang)
  425. ;; Add the spec for this block to blocks under it's language
  426. (setq by-lang (cdr (assoc src-lang blocks)))
  427. (setq blocks (delq (assoc src-lang blocks) blocks))
  428. (setq blocks (cons
  429. (cons src-lang
  430. (cons (list start-line file link
  431. source-name params body comment)
  432. by-lang)) blocks)))))))
  433. ;; Ensure blocks are in the correct order
  434. (setq blocks
  435. (mapcar
  436. (lambda (by-lang) (cons (car by-lang) (reverse (cdr by-lang))))
  437. blocks))
  438. blocks))
  439. (defun org-babel-tangle-comment-links ( &optional info)
  440. "Return a list of begin and end link comments for the code block at point."
  441. (let* ((start-line (org-babel-where-is-src-block-head))
  442. (file (buffer-file-name))
  443. (link (org-link-escape (progn (call-interactively 'org-store-link)
  444. (org-no-properties
  445. (car (pop org-stored-links))))))
  446. (source-name (nth 4 (or info (org-babel-get-src-block-info 'light))))
  447. (link-data (mapcar (lambda (el)
  448. (cons (symbol-name el)
  449. ((lambda (le)
  450. (if (stringp le) le (format "%S" le)))
  451. (eval el))))
  452. '(start-line file link source-name))))
  453. (list (org-fill-template org-babel-tangle-comment-format-beg link-data)
  454. (org-fill-template org-babel-tangle-comment-format-end link-data))))
  455. ;; de-tangling functions
  456. (defvar org-bracket-link-analytic-regexp)
  457. (defun org-babel-detangle (&optional source-code-file)
  458. "Propagate changes in source file back original to Org-mode file.
  459. This requires that code blocks were tangled with link comments
  460. which enable the original code blocks to be found."
  461. (interactive)
  462. (save-excursion
  463. (when source-code-file (find-file source-code-file))
  464. (goto-char (point-min))
  465. (let ((counter 0) new-body end)
  466. (while (re-search-forward org-bracket-link-analytic-regexp nil t)
  467. (when (re-search-forward
  468. (concat " " (regexp-quote (match-string 5)) " ends here"))
  469. (setq end (match-end 0))
  470. (forward-line -1)
  471. (save-excursion
  472. (when (setq new-body (org-babel-tangle-jump-to-org))
  473. (org-babel-update-block-body new-body)))
  474. (setq counter (+ 1 counter)))
  475. (goto-char end))
  476. (prog1 counter (message "Detangled %d code blocks" counter)))))
  477. (defun org-babel-tangle-jump-to-org ()
  478. "Jump from a tangled code file to the related Org-mode file."
  479. (interactive)
  480. (let ((mid (point))
  481. start end done
  482. target-buffer target-char link path block-name body)
  483. (save-window-excursion
  484. (save-excursion
  485. (while (and (re-search-backward org-bracket-link-analytic-regexp nil t)
  486. (not ; ever wider searches until matching block comments
  487. (and (setq start (point-at-eol))
  488. (setq link (match-string 0))
  489. (setq path (match-string 3))
  490. (setq block-name (match-string 5))
  491. (save-excursion
  492. (save-match-data
  493. (re-search-forward
  494. (concat " " (regexp-quote block-name)
  495. " ends here") nil t)
  496. (setq end (point-at-bol))))))))
  497. (unless (and start (< start mid) (< mid end))
  498. (error "Not in tangled code"))
  499. (setq body (org-babel-trim (buffer-substring start end))))
  500. (when (string-match "::" path)
  501. (setq path (substring path 0 (match-beginning 0))))
  502. (find-file path) (setq target-buffer (current-buffer))
  503. (goto-char start) (org-open-link-from-string link)
  504. (if (string-match "[^ \t\n\r]:\\([[:digit:]]+\\)" block-name)
  505. (org-babel-next-src-block
  506. (string-to-number (match-string 1 block-name)))
  507. (org-babel-goto-named-src-block block-name))
  508. (setq target-char (point)))
  509. (pop-to-buffer target-buffer)
  510. (prog1 body (goto-char target-char))))
  511. (provide 'ob-tangle)
  512. ;; Local variables:
  513. ;; generated-autoload-file: "org-loaddefs.el"
  514. ;; End:
  515. ;;; ob-tangle.el ends here