named results when keeping keyword of rm'd results

* lisp/ob-core.el (org-babel-remove-result): Fix recent keep-keyword
  option to include named result blocks as well.
This commit is contained in:
Eric Schulte 2013-09-20 16:29:10 -06:00
parent 6215960d99
commit d089170905
1 changed files with 1 additions and 1 deletions

View File

@ -2166,7 +2166,7 @@ code ---- the results are extracted in the syntax of the source
(when location
(save-excursion
(goto-char location)
(when (looking-at org-babel-result-regexp)
(when (looking-at (concat org-babel-result-regexp ".*$"))
(delete-region
(if keep-keyword (1+ (match-end 0)) (match-beginning 0))
(progn (forward-line 1) (org-babel-result-end))))))))