ob-exp: Remove comma-escaping special rule for Org blocks

* lisp/ob-exp.el (org-babel-exp-code): Remove comma-escaping special
  rule for Org blocks.
This commit is contained in:
Nicolas Goaziou 2012-10-22 19:23:05 +02:00
parent 468d860528
commit 4dead66693
1 changed files with 1 additions and 3 deletions

View File

@ -359,9 +359,7 @@ replaced with its value."
(org-fill-template
org-babel-exp-code-template
`(("lang" . ,(nth 0 info))
("body" . ,(if (string= (nth 0 info) "org")
(replace-regexp-in-string "^" "," (nth 1 info))
(nth 1 info)))
("body" . ,(nth 1 info))
,@(mapcar (lambda (pair)
(cons (substring (symbol-name (car pair)) 1)
(format "%S" (cdr pair))))