]> git.eshelyaron.com Git - emacs.git/commitdiff
* compile.el (compilation-read-command): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 9 Jan 2010 21:14:50 +0000 (16:14 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 9 Jan 2010 21:14:50 +0000 (16:14 -0500)
lisp/progmodes/compile.el

index 6b2b30edb966d23e3e92989c772f293b2e2c2327..0098caece926bd6f9993644daef5ad0817c84b10 100644 (file)
@@ -567,7 +567,12 @@ especially the TAB character."
 
 (defcustom compilation-read-command t
   "Non-nil means \\[compile] reads the compilation command to use.
-Otherwise, \\[compile] just uses the value of `compile-command'."
+Otherwise, \\[compile] just uses the value of `compile-command'.
+
+Note that changing this to nil may be a security risk, because a
+file might define a malicious `compile-command' as a file local
+variable, and you might not notice.  Therefore, `compile-command'
+is considered unsafe if this variable is nil."
   :type 'boolean
   :group 'compilation)