Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
39ec21ea
Commit
39ec21ea
authored
Feb 17, 2000
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main) [GC_MARK_STACK]: Initialize stack_base.
parent
a21260d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
src/emacs.c
src/emacs.c
+8
-0
No files found.
src/emacs.c
View file @
39ec21ea
...
...
@@ -694,6 +694,9 @@ main (argc, argv, envp)
char
**
argv
;
char
**
envp
;
{
#ifdef GC_MARK_STACK
Lisp_Object
dummy
;
#endif
char
stack_bottom_variable
;
int
do_initial_setlocale
;
int
skip_args
=
0
;
...
...
@@ -704,6 +707,11 @@ main (argc, argv, envp)
#endif
int
no_loadup
=
0
;
#ifdef GC_MARK_STACK
extern
Lisp_Object
*
stack_base
;
stack_base
=
&
dummy
;
#endif
#ifdef LINUX_SBRK_BUG
__sbrk
(
1
);
#endif
...
...
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