babel: Remove comment

* ob.el (org-babel-get-src-block-info): remove comment
This commit is contained in:
Dan Davison 2010-09-26 22:06:52 +01:00
parent ee96df5c73
commit b7e11ff608
1 changed files with 0 additions and 7 deletions

View File

@ -151,13 +151,6 @@ added to the header-arguments-alist."
(setq indent (car (last info)))
(setq info (butlast info))
(forward-line -1)
;; Note that e.g. "name()" and "name( )" result in
;; ((:var . "")). We maintain that behaviour, and the
;; resulting non-nil sixth element is relied upon in
;; org-babel-exp-code to detect a functional-style
;; block in those cases. However, "name" without any
;; parentheses would result in the same thing, so we
;; explicitly avoid that.
(when (and (looking-at org-babel-src-name-w-name-regexp)
(match-string 2))
(setq name (org-babel-clean-text-properties (match-string 2)))