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
24452cd5
Commit
24452cd5
authored
Feb 07, 2002
by
Andreas Schwab
Browse files
Fix thinko in last change.
parent
630909a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/alloc.c
src/alloc.c
+1
-1
No files found.
src/alloc.c
View file @
24452cd5
...
...
@@ -3773,7 +3773,7 @@ mark_stack ()
#ifndef GC_LISP_OBJECT_ALIGNMENT
#define GC_LISP_OBJECT_ALIGNMENT sizeof (Lisp_Object)
#endif
for (i = 0; i < sizeof (Lisp_Object)
/
GC_LISP_OBJECT_ALIGNMENT
; i++
)
for (i = 0; i < sizeof (Lisp_Object)
; i +=
GC_LISP_OBJECT_ALIGNMENT)
mark_memory ((char *) stack_base + i, end);
#if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
...
...
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