diff options
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 6af4ca95e7f..5a654870c21 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1265,6 +1265,7 @@ Compilation major mode are available but bound to keys that don't | |||
| 1265 | collide with Shell mode. See `compilation-mode'. | 1265 | collide with Shell mode. See `compilation-mode'. |
| 1266 | Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'." | 1266 | Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'." |
| 1267 | nil " Shell-Compile" nil | 1267 | nil " Shell-Compile" nil |
| 1268 | :group 'compilation | ||
| 1268 | (let (mode-line-process) | 1269 | (let (mode-line-process) |
| 1269 | (compilation-setup))) | 1270 | (compilation-setup))) |
| 1270 | 1271 | ||
| @@ -1276,6 +1277,7 @@ In this minor mode, all the error-parsing commands of the | |||
| 1276 | Compilation major mode are available. See `compilation-mode'. | 1277 | Compilation major mode are available. See `compilation-mode'. |
| 1277 | Turning the mode on runs the normal hook `compilation-minor-mode-hook'." | 1278 | Turning the mode on runs the normal hook `compilation-minor-mode-hook'." |
| 1278 | nil " Compilation" nil | 1279 | nil " Compilation" nil |
| 1280 | :group 'compilation | ||
| 1279 | (let ((mode-line-process)) | 1281 | (let ((mode-line-process)) |
| 1280 | (compilation-setup))) | 1282 | (compilation-setup))) |
| 1281 | 1283 | ||