babel: fixed bug resulting from two inline src blocks on the same line
* contrib/babel/lisp/org-babel.el (org-babel-set-interpreters): less greedy regexp for inline source blocks ensures that there is no confusion when two inline blocks are on the same line.
This commit is contained in:
parent
18be132545
commit
08d8331307
|
@ -164,8 +164,8 @@ can not be resolved.")
|
|||
"\\(" ;; (2) lang
|
||||
(mapconcat 'regexp-quote value "\\|")
|
||||
"\\)"
|
||||
"\\(\\|\\[\\(.*\\)\\]\\)" ;; (3,4) (unused, headers)
|
||||
"{\\([^\f\n\r\v]+\\)}" ;; (5) body
|
||||
"\\(\\|\\[\\(.*?\\)\\]\\)" ;; (3,4) (unused, headers)
|
||||
"{\\([^\f\n\r\v]+?\\)}" ;; (5) body
|
||||
"\\)")))
|
||||
|
||||
(defun org-babel-add-interpreter (interpreter)
|
||||
|
|
Loading…
Reference in New Issue