Explorar o código

org-babel: caching bugfixes

  - the match-string was thrown off by an earlier commit
  - now sorting the parameters to ensure consistent order when
  - generating hashes
Eric Schulte %!s(int64=15) %!d(string=hai) anos
pai
achega
45cce02402
Modificáronse 1 ficheiros con 5 adicións e 2 borrados
  1. 5 2
      contrib/babel/lisp/org-babel.el

+ 5 - 2
contrib/babel/lisp/org-babel.el

@@ -191,7 +191,10 @@ block."
   ;; (message "supplied params=%S" params) ;; debugging
   (let* ((info (or info (org-babel-get-src-block-info)))
          (lang (first info))
-	 (params (setf (third info) (org-babel-merge-params (third info) params)))
+	 (params (setf (third info)
+                       (sort (org-babel-merge-params (third info) params)
+                             (lambda (el1 el2) (string< (symbol-name (car el1))
+                                                   (symbol-name (car el2)))))))
          (new-hash (unless (assoc :nocache params) (org-babel-sha1-hash info)))
          (old-hash (org-babel-result-hash info))
          (body (setf (second info)
@@ -353,7 +356,7 @@ added to the header-arguments-alist."
 
 (defun org-babel-result-hash (&optional info)
   (org-babel-where-is-src-block-result nil info)
-  (org-babel-clean-text-properties (match-string 2)))
+  (org-babel-clean-text-properties (match-string 3)))
 
 (defun org-babel-hide-hash ()
   "Hide the hash in the current results line.  Only the initial