comparison lisp/progmodes/compile.el @ 107812:f1bfb44da2cb

(compilation-save-buffers-predicate): Remove the "autoload" cookie.
author Sam Steingold <sds@gnu.org>
date Fri, 09 Apr 2010 11:52:45 -0400
parents 7f4bd56a3dd2
children 1cba68e0c6f6
comparison
equal deleted inserted replaced
107811:2c6eaa7826c7 107812:f1bfb44da2cb
581 "Non-nil means \\[compile] asks which buffers to save before compiling. 581 "Non-nil means \\[compile] asks which buffers to save before compiling.
582 Otherwise, it saves all modified buffers without asking." 582 Otherwise, it saves all modified buffers without asking."
583 :type 'boolean 583 :type 'boolean
584 :group 'compilation) 584 :group 'compilation)
585 585
586 ;;;###autoload
587 (defcustom compilation-save-buffers-predicate nil 586 (defcustom compilation-save-buffers-predicate nil
588 "The second argument (PRED) passed to `save-some-buffers' before compiling. 587 "The second argument (PRED) passed to `save-some-buffers' before compiling.
589 E.g., one can set this to 588 E.g., one can set this to
590 (lambda () 589 (lambda ()
591 (string-prefix-p my-compilation-root (file-truename (buffer-file-name)))) 590 (string-prefix-p my-compilation-root (file-truename (buffer-file-name))))