aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2025-06-14 17:56:01 +0300
committerEli Zaretskii2025-06-14 17:56:01 +0300
commit69254cd51a1cdf8a67f2c10421c098cf907c0125 (patch)
tree0cdf36032aac0b69cf5c2fb18e5ec69f96894fbb /src
parent009cdc8ae09ef060c030feac06578a4ba37cd8c5 (diff)
downloademacs-69254cd51a1cdf8a67f2c10421c098cf907c0125.tar.gz
emacs-69254cd51a1cdf8a67f2c10421c098cf907c0125.zip
; * src/profiler.c (export_log): Fix whitespace (bug#78762).
Diffstat (limited to 'src')
-rw-r--r--src/profiler.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/profiler.c b/src/profiler.c
index f421eb52b31..6d6769b0cdd 100644
--- a/src/profiler.c
+++ b/src/profiler.c
@@ -560,7 +560,9 @@ before returning. */)
560static Lisp_Object 560static Lisp_Object
561export_log (struct profiler_log *plog) 561export_log (struct profiler_log *plog)
562{ 562{
563 if (!plog->log) return Qnil; 563 if (!plog->log)
564 return Qnil;
565
564 log_t *log = plog->log; 566 log_t *log = plog->log;
565 /* The returned hash table uses `equal' as key equivalence predicate 567 /* The returned hash table uses `equal' as key equivalence predicate
566 which is more discriminating than the `function-equal' used by 568 which is more discriminating than the `function-equal' used by