diff options
author | Eli Zaretskii <eliz@gnu.org> | 2000-07-11 07:26:25 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2000-07-11 07:26:25 +0000 |
commit | 60d2b434c0da033e4677e9a7046b3264d92a08ea (patch) | |
tree | 1c95ee7c1954fd89c9c535341e4454929c9c14be /lisp/eshell | |
parent | 4b92c49a81106e32e362c18c472f17ead12f81c9 (diff) | |
download | emacs-60d2b434c0da033e4677e9a7046b3264d92a08ea.tar.gz |
(toplevel): Reference
byte-compile-current-file only if it is bound.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-module.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el index 67acb6ac99f..fec608fc471 100644 --- a/lisp/eshell/esh-module.el +++ b/lisp/eshell/esh-module.el @@ -71,7 +71,8 @@ customizing the variable `eshell-modules-list'." ;; documentation can be provided when the user customize's ;; `eshell-modules-list'. (eval-when-compile - (when (and byte-compile-current-file + (when (and (boundp 'byte-compile-current-file) + byte-compile-current-file (equal (file-name-nondirectory byte-compile-current-file) "esh-module.el")) (let* ((directory (file-name-directory byte-compile-current-file)) |