emacs-devel
[Top][All Lists]
Advanced

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

Re: scratch/igc: Keeping a TODO list?


From: Eli Zaretskii
Subject: Re: scratch/igc: Keeping a TODO list?
Date: Sun, 12 Jan 2025 21:22:44 +0200

> From: Helmut Eller <eller.helmut@gmail.com>
> Cc: Stefan Kangas <stefankangas@gmail.com>, emacs-devel@gnu.org, gerd@gnu.org
> Date: Sun, 12 Jan 2025 19:23:14 +0100
> 
> BTW, here some nice code to emulate Eli's "open xdisp.c and lean on C-v"
> benchmark:

Thanks.  I use this instead:

(defun scroll-up-benchmark ()
  (interactive)
  (let ((oldgc gcs-done)
        (oldtime (float-time)))
    (condition-case nil (while t (scroll-up) (redisplay))
      (error (message "GCs: %d Elapsed time: %f seconds"
                      (- gcs-done oldgc) (- (float-time) oldtime))))))



reply via email to

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