Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Commit

Permalink
Prefer cl-incf to incf
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Oct 21, 2021
1 parent ee74d75 commit 64695dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/init-benchmarking.el
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ LOAD-DURATION is the time taken in milliseconds to load FEATURE.")
(defun sanityinc/require-times-tabulated-list-entries ()
(cl-loop for (feature start-time millis) in sanityinc/require-times
with order = 0
do (incf order)
do (cl-incf order)
collect (list order
(vector
(format "%.3f" (sanityinc/time-subtract-millis start-time before-init-time))
Expand Down

0 comments on commit 64695dd

Please sign in to comment.