From f24c0c7111d9a11921c057eb8d77ca4287294c0d Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 20 Oct 2019 10:40:28 +0200 Subject: [PATCH] log a page break when start compiling --- lisp/emacs-lisp/comp.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index a0ff1223626..fe3c1dde93e 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -1690,6 +1690,7 @@ If INPUT is a string, use it as the file path to be native compiled." :output (if (symbolp input) (symbol-name input) (file-name-sans-extension (expand-file-name input)))))) + (comp-log "\n \n") (mapc (lambda (pass) (comp-log (format "Running pass %s:\n" pass)) (setq data (funcall pass data))) -- 2.39.5