(interactive "DByte force recompile (directory): ")
(byte-recompile-directory directory nil t))
+(put 'byte-force-recompile 'minibuffer-action "recompile")
+
(defvar byte-compile-ignore-files nil
"List of regexps for files to ignore during byte compilation.")
(if (> dir-count 1)
(format " in %d directories" dir-count) "")))))
+(put 'byte-recompile-directory 'minibuffer-action "recompile")
+
(defvar no-byte-compile nil
"Non-nil to prevent byte-compiling of Emacs Lisp code.
This is normally set in local file variables at the end of the elisp file:
(when load
(load (if (and dest (file-exists-p dest)) dest filename))))))
+(put 'byte-recompile-file 'minibuffer-action "recompile")
+
(defun byte-compile--load-dynvars (file)
(and file (not (equal file ""))
(with-temp-buffer
(load target-file))
t))))
+(put 'byte-compile-file 'minibuffer-action "compile")
+
;;; compiling a single function
;;;###autoload
(defun compile-defun (&optional arg)