ob.el: Fix bug.
This commit is contained in:
parent
8c8b834fa9
commit
eb2adf0a29
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-05-16 Eric Schulte <eric.schulte@gmx.com>
|
||||
|
||||
* ob.el (org-babel-parse-src-block-match): Save match data during
|
||||
indentation check.
|
||||
|
||||
2012-05-16 Bastien Guerry <bzg@gnu.org>
|
||||
|
||||
* org.el (org-scan-tags): Correctly match TODO keywords.
|
||||
|
|
|
@ -1159,7 +1159,8 @@ may be specified in the properties of the current outline entry."
|
|||
(substring body 0 sub-length)
|
||||
(or body "")))))
|
||||
(preserve-indentation (or org-src-preserve-indentation
|
||||
(string-match "-i\\>" switches))))
|
||||
(save-match-data
|
||||
(string-match "-i\\>" switches)))))
|
||||
(list lang
|
||||
;; get block body less properties, protective commas, and indentation
|
||||
(with-temp-buffer
|
||||
|
|
Loading…
Add table
Reference in a new issue