1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-19 06:31:34 -08:00

(byte-compile-inline-expand): Complete Dave's

patch to correct the error message as well.
This commit is contained in:
Stefan Monnier 2001-05-27 11:34:56 +00:00
parent 28881a56aa
commit 0abfa90d84

View file

@ -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)