From: Alan Mackenzie Date: Tue, 22 Dec 2020 18:34:24 +0000 (+0000) Subject: Align the word "Function" in profiler's headers over the actual functions X-Git-Tag: emacs-28.0.90~4611 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6af31fd71ff1a403c199c479577bcc145a547db1;p=emacs.git 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". --- 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>))))