babel: removed needless param sorting from ob-execute-src-block

* lisp/ob.el (org-babel-execute-src-block): removed needless param
  sorting from ob-execute-src-block, the params are sorted already by
  ob-sha1-hash
This commit is contained in:
Eric Schulte 2010-10-21 07:44:34 -06:00
parent 9d71c8a9dd
commit 3fd8d906e4
1 changed files with 0 additions and 7 deletions

View File

@ -357,13 +357,6 @@ block."
(nth 2 info)))
(cache? (and (cdr (assoc :cache params))
(string= "yes" (cdr (assoc :cache params)))))
(params (setf (nth 2 info)
(if cache?
(sort params
(lambda (el1 el2)
(string< (symbol-name (car el1))
(symbol-name (car el2)))))
params)))
(result-params (cdr (assoc :result-params params)))
(new-hash (when cache? (org-babel-sha1-hash info)))
(old-hash (when cache? (org-babel-result-hash info)))