]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in alloc.c
authorEli Zaretskii <eliz@gnu.org>
Sun, 26 Aug 2018 14:53:05 +0000 (17:53 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 26 Aug 2018 14:53:05 +0000 (17:53 +0300)
* src/alloc.c (Fmemory_use_counts): The list we return now has
only 7 elements, not 8.  (Bug#32531)

src/alloc.c

index cdcd465ac5a23e364869519091937ed33292e738..c9788ab4c6b4c02c50322f4e47fc67b02577569f 100644 (file)
@@ -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),