diff options
Diffstat (limited to 'lisp/emacs-lisp/elp.el')
-rw-r--r-- | lisp/emacs-lisp/elp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index bb99bef55cc..784baf55c7b 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -395,11 +395,11 @@ original definition, use \\[elp-restore-function] or \\[elp-restore-all]." ;; we are recording times (let (enter-time) ;; increment the call-counter - (cl-incf (aref info 0)) + (incf (aref info 0)) (setq enter-time (current-time) result (apply func args)) ;; calculate total time in function - (cl-incf (aref info 1) (elp-elapsed-time enter-time nil)) + (incf (aref info 1) (elp-elapsed-time enter-time nil)) )) ;; turn off recording if this is the master function (if (and elp-master |