aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorGlenn Morris2018-08-14 09:06:43 -0700
committerGlenn Morris2018-08-14 09:06:43 -0700
commitd113142a8b8c815ecd6ff1418694cb878db5f45c (patch)
tree633f01eefae0388b9cae7b7b2169abe8b2ebb660 /src/alloc.c
parent396a33a3656a0e2bbe2f24a81df64914491c44e5 (diff)
parent614cc65f2dae346b2e30326cd5de01f891933eed (diff)
downloademacs-d113142a8b8c815ecd6ff1418694cb878db5f45c.tar.gz
emacs-d113142a8b8c815ecd6ff1418694cb878db5f45c.zip
Merge from origin/emacs-26
614cc65 ; * lisp/simple.el (line-move-visual): Fix typo. d2ad4ba Do not consider external packages to be removable (Bug#27822) ec0995c * src/alloc.c: Remove obsolete comments. ec6f588 Better support utf-8-with-signature and utf-8-hfs in HTML eb026a8 Don't use -Wabi compiler option
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 337668f9c31..fb8a8c98b08 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2655,8 +2655,6 @@ make_float (double float_value)
2655 2655
2656 if (float_free_list) 2656 if (float_free_list)
2657 { 2657 {
2658 /* We use the data field for chaining the free list
2659 so that we won't use the same field that has the mark bit. */
2660 XSETFLOAT (val, float_free_list); 2658 XSETFLOAT (val, float_free_list);
2661 float_free_list = float_free_list->u.chain; 2659 float_free_list = float_free_list->u.chain;
2662 } 2660 }
@@ -2760,8 +2758,6 @@ DEFUN ("cons", Fcons, Scons, 2, 2, 0,
2760 2758
2761 if (cons_free_list) 2759 if (cons_free_list)
2762 { 2760 {
2763 /* We use the cdr for chaining the free list
2764 so that we won't use the same field that has the mark bit. */
2765 XSETCONS (val, cons_free_list); 2761 XSETCONS (val, cons_free_list);
2766 cons_free_list = cons_free_list->u.s.u.chain; 2762 cons_free_list = cons_free_list->u.s.u.chain;
2767 } 2763 }