mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
Fix byte-recompile-directory.
lisp/emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf, not incf.
This commit is contained in:
parent
222fbb8bc9
commit
56bc1586ea
@ -1,3 +1,8 @@
|
||||
2012-07-12 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
|
||||
not incf.
|
||||
|
||||
2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
More CL cleanups and reduction of use of cl.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)
|
||||
|
Loading…
Reference in New Issue
Block a user