diff options
| author | Eli Zaretskii | 2025-06-14 17:56:01 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2025-06-14 17:56:01 +0300 |
| commit | 69254cd51a1cdf8a67f2c10421c098cf907c0125 (patch) | |
| tree | 0cdf36032aac0b69cf5c2fb18e5ec69f96894fbb /src | |
| parent | 009cdc8ae09ef060c030feac06578a4ba37cd8c5 (diff) | |
| download | emacs-69254cd51a1cdf8a67f2c10421c098cf907c0125.tar.gz emacs-69254cd51a1cdf8a67f2c10421c098cf907c0125.zip | |
; * src/profiler.c (export_log): Fix whitespace (bug#78762).
Diffstat (limited to 'src')
| -rw-r--r-- | src/profiler.c | 4 |
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. */) | |||
| 560 | static Lisp_Object | 560 | static Lisp_Object |
| 561 | export_log (struct profiler_log *plog) | 561 | export_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 |