diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:02:02 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:02:02 +0000 |
commit | b291c86c45313cb42c6fd698409f9d17cc457408 (patch) | |
tree | e0e10ed6f84abb0bc6ee1661ffa8529cc94ad079 /lisp/emacs-lisp | |
parent | 71261a01d39bff61ec7de6b85c621452a9d094b4 (diff) | |
download | emacs-b291c86c45313cb42c6fd698409f9d17cc457408.tar.gz emacs-b291c86c45313cb42c6fd698409f9d17cc457408.tar.bz2 emacs-b291c86c45313cb42c6fd698409f9d17cc457408.zip |
(byte-compile-inline-expand): Undo last change.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 95c9e714372..5c713b13449 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 1 fn)) + (load (nth 2 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)) |