From a3df684c514aec6d9f04b752df4d7136060a8212 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Tue, 18 Mar 2025 15:55:29 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f88851..a0bba2a 100644 --- a/README.md +++ b/README.md @@ -1093,9 +1093,9 @@ Add the following to your `~/.emacs.d/pre-early-init.el` file: ```emacs-lisp (defun display-startup-time () "Display the startup time and number of garbage collections." - (message "Emacs loaded in %.2f seconds (Init only: %.2fs) with %d garbage collections." - (time-to-seconds (time-since before-init-time)) + (message "Emacs init loaded in %.2f seconds (Full emacs-startup: %.2fs) with %d garbage collections." (float-time (time-subtract after-init-time before-init-time)) + (time-to-seconds (time-since before-init-time)) gcs-done)) (add-hook 'emacs-startup-hook #'display-startup-time 100)