ob: code block regexp now matches blocks with empty bodies

Thanks to Martyn Jago for this patch

* lisp/ob.el (org-babel-src-block-regexp): Code block regexp now
  matches blocks with empty bodies.
This commit is contained in:
Eric Schulte 2011-02-27 14:38:58 -07:00
parent cfcf493c29
commit d0a93cee37
1 changed files with 2 additions and 2 deletions

View File

@ -131,14 +131,14 @@ remove code block execution from the C-c C-c keybinding."
(defvar org-babel-src-block-regexp
(concat
;; (1) indentation (2) lang
;; (1) indentation (2) lang
"^\\([ \t]*\\)#\\+begin_src[ \t]+\\([^ \f\t\n\r\v]+\\)[ \t]*"
;; (3) switches
"\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)"
;; (4) header arguments
"\\([^\n]*\\)\n"
;; (5) body
"\\([^\000]+?\n\\)[ \t]*#\\+end_src")
"\\([^\000]*?\n*\\)[ \t]*#\\+end_src")
"Regexp used to identify code blocks.")
(defvar org-babel-inline-src-block-regexp