summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2010-10-21 07:44:34 -0600
committerEric Schulte <schulte.eric@gmail.com>2010-10-21 07:44:34 -0600
commit3fd8d906e409d43da3e905860e7c5970fbcbdd62 (patch)
treea3c5ee6729e070469034861483b428e0c2e3ad79
parent9d71c8a9dd1f20ca05d7d07360769017b95ec5e0 (diff)
downloadorg-mode-3fd8d906e409d43da3e905860e7c5970fbcbdd62.tar.gz
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
-rw-r--r--lisp/ob.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/ob.el b/lisp/ob.el
index 65ed2e6..9544bcc 100644
--- a/lisp/ob.el
+++ b/lisp/ob.el
@@ -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)))