From: Eli Zaretskii Date: Sun, 26 Aug 2018 14:53:05 +0000 (+0300) Subject: Fix a typo in alloc.c X-Git-Tag: emacs-27.0.90~4509^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18d52b90a1692a47cea5b5e905a58a3b2c6c9a64;p=emacs.git 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) --- 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),