aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/byte-opt.el2
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 @@
269 (setq fn (or (and (fboundp name) (symbol-function name)) 269 (setq fn (or (and (fboundp name) (symbol-function name))
270 (cdr (assq name byte-compile-function-environment))))) 270 (cdr (assq name byte-compile-function-environment)))))
271 (if (and (consp fn) (eq (car fn) 'autoload)) 271 (if (and (consp fn) (eq (car fn) 'autoload))
272 (error "File `%s' didn't define `%s'" (nth 2 fn) name)) 272 (error "File `%s' didn't define `%s'" (nth 1 fn) name))
273 (if (symbolp fn) 273 (if (symbolp fn)
274 (byte-compile-inline-expand (cons fn (cdr form))) 274 (byte-compile-inline-expand (cons fn (cdr form)))
275 (if (byte-code-function-p fn) 275 (if (byte-code-function-p fn)