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
f95c3f91
Commit
f95c3f91
authored
May 23, 2000
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(setpgrp) [HAVE_SETPGID]: Define as setpgid.
parent
dd04d6c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
src/callproc.c
src/callproc.c
+4
-0
src/emacs.c
src/emacs.c
+4
-0
src/sysdep.c
src/sysdep.c
+4
-0
No files found.
src/callproc.c
View file @
f95c3f91
...
...
@@ -90,6 +90,10 @@ extern noshare char **environ;
extern
char
**
environ
;
#endif
#ifdef HAVE_SETPGID
#define setpgrp setpgid
#endif
#define max(a, b) ((a) > (b) ? (a) : (b))
Lisp_Object
Vexec_path
,
Vexec_directory
,
Vdata_directory
,
Vdoc_directory
;
...
...
src/emacs.c
View file @
f95c3f91
...
...
@@ -64,6 +64,10 @@ Boston, MA 02111-1307, USA. */
#define O_RDWR 2
#endif
#ifdef HAVE_SETPGID
#define setpgrp setpgid
#endif
extern
void
malloc_warning
();
extern
void
set_time_zone_rule
();
extern
char
*
index
();
...
...
src/sysdep.c
View file @
f95c3f91
...
...
@@ -75,6 +75,10 @@ extern int h_errno;
#include <unistd.h>
#endif
#ifdef HAVE_SETPGID
#define setpgrp setpgid
#endif
/* Get SI_SRPC_DOMAIN, if it is available. */
#ifdef HAVE_SYS_SYSTEMINFO_H
#include <sys/systeminfo.h>
...
...
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