From 6af31fd71ff1a403c199c479577bcc145a547db1 Mon Sep 17 00:00:00 2001 From: Alan Mackenzie Date: Tue, 22 Dec 2020 18:34:24 +0000 Subject: [PATCH] Align the word "Function" in profiler's headers over the actual functions * lisp/profiler.el (profiler-report-render-calltree-1): Replace two occurrences of "Function" with " Function". --- lisp/profiler.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/profiler.el b/lisp/profiler.el index b25eed05bdb..1c843727cc8 100644 --- a/lisp/profiler.el +++ b/lisp/profiler.el @@ -745,11 +745,11 @@ below entry at point." (cpu (profiler-report-header-line-format profiler-report-cpu-line-format - (list "Samples" "%") " " "Function")) + (list "Samples" "%") " " " Function")) (memory (profiler-report-header-line-format profiler-report-memory-line-format - (list "Bytes" "%") " " "Function")))) + (list "Bytes" "%") " " " Function")))) (let ((predicate (cl-ecase order (ascending #'profiler-calltree-count<) (descending #'profiler-calltree-count>)))) -- 2.39.5