From 7b59410c30a7ef77a84d36f625fe7fc648f99fa6 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 30 Jan 2012 18:27:33 -0700 Subject: [PATCH] don't allow newlines in source names in noweb references * lisp/ob.el (org-babel-expand-noweb-references): Don't allow newlines in source names in noweb references. --- lisp/ob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob.el b/lisp/ob.el index 88d92ea1d..3616b0b42 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -2150,7 +2150,7 @@ block but are passed literally to the \"example-block\"." (with-temp-buffer (insert body) (goto-char (point-min)) (setq index (point)) - (while (and (re-search-forward "<<\\([^ \t].+?[^ \t]\\|[^ \t]\\)>>" + (while (and (re-search-forward "<<\\([^ \t\n].+?[^ \t\n]\\|[^ \t\n]\\)>>" nil t)) (save-match-data (setf source-name (match-string 1))) (save-match-data (setq evaluate (string-match "\(.*\)" source-name))) -- 2.11.4.GIT