|
@@ -116,9 +116,10 @@ if so then run the appropriate source block from the Library."
|
|
|
(match-string 2) (match-string 11)))
|
|
|
(save-excursion
|
|
|
(forward-line -1)
|
|
|
- (and (looking-at (concat org-babel-src-name-regexp
|
|
|
- "\\([^\n]*\\)$"))
|
|
|
- (org-no-properties (match-string 1))))))))))
|
|
|
+ (save-match-data
|
|
|
+ (and (looking-at (concat org-babel-src-name-regexp
|
|
|
+ "\\([^\n]*\\)$"))
|
|
|
+ (org-no-properties (match-string 1)))))))))))
|
|
|
|
|
|
(defvar org-babel-default-header-args:emacs-lisp) ; Defined in ob-emacs-lisp.el
|
|
|
(defun org-babel-lob-execute (info)
|