babel: ob-execute-src-block respects prefix argument (which forces re-calculation)

* lisp/ob.el (org-babel-execute-src-block): respects prefix argument
  (which forces re-calculation)
This commit is contained in:
Eric Schulte 2010-10-21 07:50:32 -06:00
parent 3fd8d906e4
commit d87e33ea19
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ block."
(org-babel-process-params
(org-babel-merge-params (nth 2 info) params))
(nth 2 info)))
(cache? (and (cdr (assoc :cache params))
(cache? (and (not arg) (cdr (assoc :cache params))
(string= "yes" (cdr (assoc :cache params)))))
(result-params (cdr (assoc :result-params params)))
(new-hash (when cache? (org-babel-sha1-hash info)))