fix bug in drawer results (should not escape)

* lisp/ob.el (org-babel-insert-result): Don't escape results in drawers.
This commit is contained in:
Eric Schulte 2012-11-06 06:20:27 -07:00
parent 854ddf635c
commit c2ebeea6f6
1 changed files with 4 additions and 3 deletions

View File

@ -1943,10 +1943,11 @@ code ---- the results are extracted in the syntax of the source
((member "prepend" result-params)))) ; already there
(setq results-switches
(if results-switches (concat " " results-switches) ""))
(let ((wrap (lambda (start finish)
(let ((wrap (lambda (start finish &optional no-escape)
(goto-char end) (insert (concat finish "\n"))
(goto-char beg) (insert (concat start "\n"))
(org-escape-code-in-region (point) end)
(unless no-escape
(org-escape-code-in-region (point) end))
(goto-char end) (goto-char (point-at-eol))
(setq end (point-marker))))
(proper-list-p (lambda (it) (and (listp it) (null (cdr (last it)))))))
@ -2002,7 +2003,7 @@ code ---- the results are extracted in the syntax of the source
((or (member "drawer" result-params)
;; Stay backward compatible with <7.9.2
(member "wrap" result-params))
(funcall wrap ":RESULTS:" ":END:"))
(funcall wrap ":RESULTS:" ":END:" 'no-escape))
((and (not (funcall proper-list-p result))
(not (member "file" result-params)))
(org-babel-examplize-region beg end results-switches)