Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fd80e3bb
Commit
fd80e3bb
authored
Mar 06, 1994
by
Richard M. Stallman
Browse files
(mark_object): Add no-op cast.
parent
a1ed3ba6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/alloc.c
src/alloc.c
+3
-1
No files found.
src/alloc.c
View file @
fd80e3bb
...
...
@@ -1551,7 +1551,9 @@ mark_object (objptr)
if (i != COMPILED_CONSTANTS)
mark_object (&ptr1->contents[i]);
}
objptr = &ptr1->contents[COMPILED_CONSTANTS];
/* This cast should be unnecessary, but some Mips compiler complains
(MIPS-ABI + SysVR4, DC/OSx, etc). */
objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
goto loop;
}
...
...
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