]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/alloc.c: Remove obsolete comments.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 11 Aug 2018 19:13:53 +0000 (12:13 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 11 Aug 2018 19:14:49 +0000 (12:14 -0700)
src/alloc.c

index 7baaa512c200990355514cd76bd832312a200464..3654d301828992c02a814e48bd2fe4c5e60a8ba9 100644 (file)
@@ -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;
     }