summaryrefslogtreecommitdiff
path: root/lisp/profiler.el
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2020-12-22 18:34:24 +0000
committerAlan Mackenzie <acm@muc.de>2020-12-22 18:34:24 +0000
commit6af31fd71ff1a403c199c479577bcc145a547db1 (patch)
treedd103f65e79f47dd9e9434061a162708d72f192c /lisp/profiler.el
parentaae44a36f35cc8bdefe86daf78fb9aa03df72c3a (diff)
downloademacs-6af31fd71ff1a403c199c479577bcc145a547db1.tar.gz
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".
Diffstat (limited to 'lisp/profiler.el')
-rw-r--r--lisp/profiler.el4
1 files 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>))))