diff options
| author | Lars Ingebrigtsen | 2019-10-01 16:40:57 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-10-01 16:40:57 +0200 |
| commit | 28b7dd4ee4bb0c9d93435b88fed30fa20c317031 (patch) | |
| tree | e5ff0a2dd7edf85e6e36a385dc1e738ebfadb590 | |
| parent | ad33e3e549e24c48259c6bdfb069e41be0a31f98 (diff) | |
| download | emacs-28b7dd4ee4bb0c9d93435b88fed30fa20c317031.tar.gz emacs-28b7dd4ee4bb0c9d93435b88fed30fa20c317031.zip | |
Fix build error in bytecomp.el from previous change
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 2b26390b180..1d0f07a9410 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -124,7 +124,7 @@ | |||
| 124 | (require 'backquote) | 124 | (require 'backquote) |
| 125 | (require 'macroexp) | 125 | (require 'macroexp) |
| 126 | (require 'cconv) | 126 | (require 'cconv) |
| 127 | (eval-when-compile (require 'compile)) | 127 | (require 'compile) |
| 128 | ;; Refrain from using cl-lib at run-time here, since it otherwise prevents | 128 | ;; Refrain from using cl-lib at run-time here, since it otherwise prevents |
| 129 | ;; us from emitting warnings when compiling files which use cl-lib without | 129 | ;; us from emitting warnings when compiling files which use cl-lib without |
| 130 | ;; requiring it! (bug#30635) | 130 | ;; requiring it! (bug#30635) |