diff options
| author | Sam Steingold | 2009-02-18 15:37:40 +0000 |
|---|---|---|
| committer | Sam Steingold | 2009-02-18 15:37:40 +0000 |
| commit | 72fcf38256aa4e21301e536c90bda148023d9ab5 (patch) | |
| tree | e1d9051f7576659221a095d6f2e9877e7ec263f0 /lisp/progmodes | |
| parent | c19aae894a0f873f259701e912224bf4831dec7a (diff) | |
| download | emacs-72fcf38256aa4e21301e536c90bda148023d9ab5.tar.gz emacs-72fcf38256aa4e21301e536c90bda148023d9ab5.zip | |
Require comint at top level to fix the last patch.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/compile.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 47b21286c97..00bd33bc39c 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -72,6 +72,7 @@ | |||
| 72 | 72 | ||
| 73 | (eval-when-compile (require 'cl)) | 73 | (eval-when-compile (require 'cl)) |
| 74 | (require 'tool-bar) | 74 | (require 'tool-bar) |
| 75 | (require 'comint) | ||
| 75 | 76 | ||
| 76 | (defvar font-lock-extra-managed-props) | 77 | (defvar font-lock-extra-managed-props) |
| 77 | (defvar font-lock-keywords) | 78 | (defvar font-lock-keywords) |
| @@ -1155,7 +1156,7 @@ Returns the compilation buffer created." | |||
| 1155 | (or mode (setq mode 'compilation-mode)) | 1156 | (or mode (setq mode 'compilation-mode)) |
| 1156 | (let* ((name-of-mode | 1157 | (let* ((name-of-mode |
| 1157 | (if (eq mode t) | 1158 | (if (eq mode t) |
| 1158 | (prog1 "compilation" (require 'comint)) | 1159 | "compilation" |
| 1159 | (replace-regexp-in-string "-mode$" "" (symbol-name mode)))) | 1160 | (replace-regexp-in-string "-mode$" "" (symbol-name mode)))) |
| 1160 | (thisdir default-directory) | 1161 | (thisdir default-directory) |
| 1161 | outwin outbuf) | 1162 | outwin outbuf) |