emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 18d52b9: Fix a typo in alloc.c


From: Eli Zaretskii
Subject: [Emacs-diffs] master 18d52b9: Fix a typo in alloc.c
Date: Sun, 26 Aug 2018 10:53:48 -0400 (EDT)

branch: master
commit 18d52b90a1692a47cea5b5e905a58a3b2c6c9a64
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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 cdcd465..c9788ab 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),



reply via email to

[Prev in Thread] Current Thread [Next in Thread]