diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2012-07-12 14:33:55 +0300 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2012-07-12 14:33:55 +0300 |
| commit | 56bc1586eaf4647bd9878e826779ad0d785820b3 (patch) | |
| tree | 603ab37d8ac40f877b7947ef13e60981cbabcdce /lisp/emacs-lisp | |
| parent | 222fbb8bc910094842343fd70f53400d2dcbf92d (diff) | |
| download | emacs-56bc1586eaf4647bd9878e826779ad0d785820b3.tar.gz | |
Fix byte-recompile-directory.
lisp/emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
not incf.
Diffstat (limited to 'lisp/emacs-lisp')
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 751515beb3e..755bb4f821b 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1591,7 +1591,7 @@ that already has a `.elc' file." (not (auto-save-file-name-p source)) (not (string-equal dir-locals-file (file-name-nondirectory source)))) - (progn (incf + (progn (cl-incf (pcase (byte-recompile-file source force arg) (`no-byte-compile skip-count) (`t file-count) |
