emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109051: Fix byte-recompile-directory


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109051: Fix byte-recompile-directory.
Date: Thu, 12 Jul 2012 14:33:55 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109051
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2012-07-12 14:33:55 +0300
message:
  Fix byte-recompile-directory.
  
   lisp/emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
   not incf.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/bytecomp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-11 23:13:41 +0000
+++ b/lisp/ChangeLog    2012-07-12 11:33:55 +0000
@@ -1,3 +1,8 @@
+2012-07-12  Eli Zaretskii  <address@hidden>
+
+       * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
+       not incf.
+
 2012-07-11  Stefan Monnier  <address@hidden>
 
        More CL cleanups and reduction of use of cl.el.

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2012-07-10 11:51:54 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2012-07-12 11:33:55 +0000
@@ -1591,7 +1591,7 @@
                         (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]