0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 05:32:51 +00:00

fix bug: tangling #+headers: lines w/prefix arg

This commit is contained in:
Eric Schulte 2013-01-26 13:58:15 -07:00
parent bb40d29b45
commit f52600a439

View file

@ -202,7 +202,14 @@ exported source code blocks by language."
target-file)
(setq target-file
(read-from-minibuffer "Tangle to: " (buffer-file-name)))))
(narrow-to-region (match-beginning 0) (match-end 0)))
(narrow-to-region
(save-match-data
(save-excursion
(goto-char (org-babel-where-is-src-block-head))
(while (and (forward-line -1)
(looking-at org-babel-multi-line-header-regexp)))
(point)))
(match-end 0)))
(save-excursion
(let ((block-counter 0)
(org-babel-default-header-args