]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-inline-expand):
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 May 2001 18:43:50 +0000 (18:43 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 May 2001 18:43:50 +0000 (18:43 +0000)
Fix the arg of `load'.  From Dave Love <fx@gnu.org>.

lisp/ChangeLog
lisp/emacs-lisp/byte-opt.el

index ca950dcb3b33c05b4f7339bf21c87b2afc88c283..46cf276f2cfac63b6eb0221613da3db3e6a67d9d 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-25  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
+       Fix the arg of `load'.  From Dave Love <fx@gnu.org>.
+
 2001-05-25  Andrew Choi  <akochoi@i-cable.com>
 
        * international/titdic-cnv.el (ctlau-gb-converter): `\' should
index 5c713b134497abe4a26a432fc4aa749fe288f3e4..95c9e71437278345ced6c84677bcafbead020eb6 100644 (file)
          form)
       ;; else
       (when (and (consp fn) (eq (car fn) 'autoload))
-       (load (nth 2 fn))
+       (load (nth 1 fn))
        (setq fn (or (and (fboundp name) (symbol-function name))
                     (cdr (assq name byte-compile-function-environment)))))
       (if (and (consp fn) (eq (car fn) 'autoload))