diff options
author | Simon Marshall <simon@gnu.org> | 1995-11-06 13:27:08 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1995-11-06 13:27:08 +0000 |
commit | 89d56c1a5267744e7feec4d93919c90475304432 (patch) | |
tree | f688e74f94ca6932430b21e3a1ef6852a7de20ff /lisp/emacs-lisp | |
parent | 80e01c1954489383a446de2f68cfa7bc34b39a1c (diff) | |
download | emacs-89d56c1a5267744e7feec4d93919c90475304432.tar.gz emacs-89d56c1a5267744e7feec4d93919c90475304432.tar.bz2 emacs-89d56c1a5267744e7feec4d93919c90475304432.zip |
Make byte-force-recompile suitably interactive.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f323d8262dc..29155123bf8 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1125,6 +1125,7 @@ otherwise pop it") (defun byte-force-recompile (directory) "Recompile every `.el' file in DIRECTORY that already has a `.elc' file. Files in subdirectories of DIRECTORY are processed also." + (interactive "DByte recompile directory: ") (byte-recompile-directory directory nil t)) ;;;###autoload |