From 7745ef04c9d8ac17009abae1b0e25649a472723b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 18 Feb 2015 15:02:22 +0100 Subject: [PATCH] ob-core: Allow spaces in NAME * lisp/ob-core.el (org-babel-src-name-w-name-regexp): Allow spaces as NAME value. Suggested-by: Joost Helberg --- lisp/ob-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index fe300ac8d..a00b5a310 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -192,7 +192,7 @@ This string must include a \"%s\" which will be replaced by the results." "\\(" org-babel-multi-line-header-regexp "\\)*" - "\\([^ ()\f\t\n\r\v]+\\)") + "\\([^()\f\t\n\r\v]+\\)") "Regular expression matching source name lines with a name.") (defvar org-babel-src-block-regexp -- 2.11.4.GIT