Fix compile-command's safe-local-variable condition.
* progmodes/compile.el: Don't treat compile-command as safe if compilation-read-command might be nil (Bug#4218).
This commit is contained in:
parent
e5a29a1070
commit
fa7b5f7b98
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-01-09 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* progmodes/compile.el: Don't treat compile-command as safe if
|
||||
compilation-read-command might be nil (Bug#4218).
|
||||
|
||||
2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* startup.el (command-line-1): Use orig-argi to check for ignored X and
|
||||
|
|
|
@ -603,7 +603,7 @@ You might also use mode hooks to specify it in certain modes, like this:
|
|||
(file-name-sans-extension buffer-file-name))))))"
|
||||
:type 'string
|
||||
:group 'compilation)
|
||||
;;;###autoload(put 'compile-command 'safe-local-variable 'stringp)
|
||||
;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command))))
|
||||
|
||||
;;;###autoload
|
||||
(defcustom compilation-disable-input nil
|
||||
|
|
Loading…
Add table
Reference in a new issue