From a434b175a9e797c920118482dae7d6422a28eae7 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 25 May 2001 18:43:50 +0000 Subject: [PATCH] (byte-compile-inline-expand): Fix the arg of `load'. From Dave Love . --- lisp/ChangeLog | 5 +++++ lisp/emacs-lisp/byte-opt.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ca950dcb3b3..46cf276f2cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-05-25 Stefan Monnier + + * emacs-lisp/byte-opt.el (byte-compile-inline-expand): + Fix the arg of `load'. From Dave Love . + 2001-05-25 Andrew Choi * international/titdic-cnv.el (ctlau-gb-converter): `\' should diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 5c713b13449..95c9e714372 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -265,7 +265,7 @@ 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)) -- 2.39.5