diff options
| author | Chong Yidong | 2010-01-09 16:14:50 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-01-09 16:14:50 -0500 |
| commit | 4d9bbfa616fb135ff54a63fcd965923d48ca64f1 (patch) | |
| tree | 691e74324e5209a7b7905ee2e3d8db5a8a46f762 | |
| parent | 6ee867808a334a06815f89178635b545e032e69a (diff) | |
| download | emacs-4d9bbfa616fb135ff54a63fcd965923d48ca64f1.tar.gz emacs-4d9bbfa616fb135ff54a63fcd965923d48ca64f1.zip | |
* compile.el (compilation-read-command): Doc fix.
| -rw-r--r-- | lisp/progmodes/compile.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 6b2b30edb96..0098caece92 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -567,7 +567,12 @@ especially the TAB character." | |||
| 567 | 567 | ||
| 568 | (defcustom compilation-read-command t | 568 | (defcustom compilation-read-command t |
| 569 | "Non-nil means \\[compile] reads the compilation command to use. | 569 | "Non-nil means \\[compile] reads the compilation command to use. |
| 570 | Otherwise, \\[compile] just uses the value of `compile-command'." | 570 | Otherwise, \\[compile] just uses the value of `compile-command'. |
| 571 | |||
| 572 | Note that changing this to nil may be a security risk, because a | ||
| 573 | file might define a malicious `compile-command' as a file local | ||
| 574 | variable, and you might not notice. Therefore, `compile-command' | ||
| 575 | is considered unsafe if this variable is nil." | ||
| 571 | :type 'boolean | 576 | :type 'boolean |
| 572 | :group 'compilation) | 577 | :group 'compilation) |
| 573 | 578 | ||