aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorEli Zaretskii2018-08-26 17:53:05 +0300
committerEli Zaretskii2018-08-26 17:53:05 +0300
commit18d52b90a1692a47cea5b5e905a58a3b2c6c9a64 (patch)
tree1b3cbeabe153a2256dd0fb7a00f7401b8e3dbef9 /src/alloc.c
parent5c642b2dc1b666ae488225b76251750a8cf331be (diff)
downloademacs-18d52b90a1692a47cea5b5e905a58a3b2c6c9a64.tar.gz
emacs-18d52b90a1692a47cea5b5e905a58a3b2c6c9a64.zip
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)
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
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
7017 (but the contents of a buffer's text do not count here). */) 7017 (but the contents of a buffer's text do not count here). */)
7018 (void) 7018 (void)
7019{ 7019{
7020 return listn (CONSTYPE_HEAP, 8, 7020 return listn (CONSTYPE_HEAP, 7,
7021 bounded_number (cons_cells_consed), 7021 bounded_number (cons_cells_consed),
7022 bounded_number (floats_consed), 7022 bounded_number (floats_consed),
7023 bounded_number (vector_cells_consed), 7023 bounded_number (vector_cells_consed),