From: João Távora Date: Wed, 15 Aug 2012 14:33:57 +0000 (+0100) Subject: Fix: Ooops forgot to commit the actual fix for #281. X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/f96bd13cf77e75d5497efbffede5c55b207786e4 Fix: Ooops forgot to commit the actual fix for #281. --- diff --git a/yasnippet.el b/yasnippet.el index 03c532582..21f0d6a6f 100644 --- a/yasnippet.el +++ b/yasnippet.el @@ -1811,7 +1811,7 @@ loading." (defun yas--load-pending-jits () (when yas-minor-mode (dolist (mode (yas--modes-to-activate)) - (let ((forms (gethash mode yas--scheduled-jit-loads))) + (let ((forms (reverse (gethash mode yas--scheduled-jit-loads)))) ;; must reverse to maintain coherence with `yas-snippet-dirs' (dolist (form forms) (yas--message 3 "Loading for `%s', just-in-time: %s!" mode form)