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
e8589b11
Commit
e8589b11
authored
Jan 08, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Don't call setpgrp if !initialized.
parent
bd4c2762
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/emacs.c
src/emacs.c
+5
-4
No files found.
src/emacs.c
View file @
e8589b11
...
...
@@ -341,10 +341,11 @@ main (argc, argv, envp)
clearerr
(
stdin
);
#ifdef BSD
{
inherited_pgroup
=
EMACS_GETPGRP
(
0
);
setpgrp
(
0
,
getpid
());
}
if
(
initialized
)
{
inherited_pgroup
=
EMACS_GETPGRP
(
0
);
setpgrp
(
0
,
getpid
());
}
#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