emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 ec0995c: * src/alloc.c: Remove obsolete comments.


From: Paul Eggert
Subject: [Emacs-diffs] emacs-26 ec0995c: * src/alloc.c: Remove obsolete comments.
Date: Sat, 11 Aug 2018 15:15:00 -0400 (EDT)

branch: emacs-26
commit ec0995c40901a5b11d42c8a5fafd26771c76b17c
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * src/alloc.c: Remove obsolete comments.
---
 src/alloc.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index 7baaa51..3654d30 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2642,8 +2642,6 @@ make_float (double float_value)
 
   if (float_free_list)
     {
-      /* We use the data field for chaining the free list
-        so that we won't use the same field that has the mark bit.  */
       XSETFLOAT (val, float_free_list);
       float_free_list = float_free_list->u.chain;
     }
@@ -2747,8 +2745,6 @@ DEFUN ("cons", Fcons, Scons, 2, 2, 0,
 
   if (cons_free_list)
     {
-      /* We use the cdr for chaining the free list
-        so that we won't use the same field that has the mark bit.  */
       XSETCONS (val, cons_free_list);
       cons_free_list = cons_free_list->u.s.u.chain;
     }



reply via email to

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