diff options
| author | Richard M. Stallman | 2005-09-09 01:24:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-09-09 01:24:15 +0000 |
| commit | c3b8339fd7fcc133af5542e183d2d78c2b563f57 (patch) | |
| tree | 79ade7c9a688346a8332a194ef144e498737ffd1 | |
| parent | 5c290b9e68944e4e11e21c6fc6d0ae7c75c5f130 (diff) | |
| download | emacs-c3b8339fd7fcc133af5542e183d2d78c2b563f57.tar.gz emacs-c3b8339fd7fcc133af5542e183d2d78c2b563f57.zip | |
Require `compile' unconditionally.
| -rw-r--r-- | lisp/progmodes/flymake.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index d137284f795..e5089d84fb0 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el | |||
| @@ -960,8 +960,7 @@ Convert it to flymake internal format." | |||
| 960 | (setq converted-list (cons (list regexp file line col) converted-list))))) | 960 | (setq converted-list (cons (list regexp file line col) converted-list))))) |
| 961 | converted-list)) | 961 | converted-list)) |
| 962 | 962 | ||
| 963 | (eval-when-compile | 963 | (require 'compile) |
| 964 | (require 'compile)) | ||
| 965 | 964 | ||
| 966 | (defvar flymake-err-line-patterns ; regexp file-idx line-idx col-idx (optional) text-idx(optional), match-end to end of string is error text | 965 | (defvar flymake-err-line-patterns ; regexp file-idx line-idx col-idx (optional) text-idx(optional), match-end to end of string is error text |
| 967 | (append | 966 | (append |