Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ec0995c4
Commit
ec0995c4
authored
Aug 11, 2018
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/alloc.c: Remove obsolete comments.
parent
ec6f5889
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
src/alloc.c
src/alloc.c
+0
-4
No files found.
src/alloc.c
View file @
ec0995c4
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment