diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:34:56 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:34:56 +0000 |
commit | 0abfa90d846e6545b7ea72d5eb9282ebd9bd45d1 (patch) | |
tree | cb98723c64050c297a018287f0e7711ca60ddb13 /lisp/emacs-lisp | |
parent | 28881a56aa065339b4e875574eae80e21895d009 (diff) | |
download | emacs-0abfa90d846e6545b7ea72d5eb9282ebd9bd45d1.tar.gz |
(byte-compile-inline-expand): Complete Dave's
patch to correct the error message as well.
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..86ccb7fc51c 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -269,7 +269,7 @@ (setq fn (or (and (fboundp name) (symbol-function name)) (cdr (assq name byte-compile-function-environment))))) (if (and (consp fn) (eq (car fn) 'autoload)) - (error "File `%s' didn't define `%s'" (nth 2 fn) name)) + (error "File `%s' didn't define `%s'" (nth 1 fn) name)) (if (symbolp fn) (byte-compile-inline-expand (cons fn (cdr form))) (if (byte-code-function-p fn) |