From 18d52b90a1692a47cea5b5e905a58a3b2c6c9a64 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 26 Aug 2018 17:53:05 +0300 Subject: [PATCH] Fix a typo in alloc.c * src/alloc.c (Fmemory_use_counts): The list we return now has only 7 elements, not 8. (Bug#32531) --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index cdcd465ac5a..c9788ab4c6b 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -7017,7 +7017,7 @@ Frames, windows, buffers, and subprocesses count as vectors (but the contents of a buffer's text do not count here). */) (void) { - return listn (CONSTYPE_HEAP, 8, + return listn (CONSTYPE_HEAP, 7, bounded_number (cons_cells_consed), bounded_number (floats_consed), bounded_number (vector_cells_consed), -- 2.39.2