diff options
| author | Dave Love | 2003-06-02 18:46:55 +0000 |
|---|---|---|
| committer | Dave Love | 2003-06-02 18:46:55 +0000 |
| commit | 776a24a1766c5f9d3cd9d85336ae71ae1ddd5014 (patch) | |
| tree | 1291ffad02115ed7c2417e82a1616bbab91204be /src | |
| parent | 54a2cb1213b3c87a79c15814bf4273b1a439a0ee (diff) | |
| download | emacs-776a24a1766c5f9d3cd9d85336ae71ae1ddd5014.tar.gz emacs-776a24a1766c5f9d3cd9d85336ae71ae1ddd5014.zip | |
Use HAVE_FCNTL_H, not USG5.
(syms_of_callproc) <process-environment>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c index 7600957bc17..d92176ccd91 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -42,7 +42,7 @@ extern int errno; | |||
| 42 | #endif | 42 | #endif |
| 43 | 43 | ||
| 44 | #include <sys/file.h> | 44 | #include <sys/file.h> |
| 45 | #ifdef USG5 | 45 | #ifdef HAVE_FCNTL_H |
| 46 | #define INCLUDED_FCNTL | 46 | #define INCLUDED_FCNTL |
| 47 | #include <fcntl.h> | 47 | #include <fcntl.h> |
| 48 | #endif | 48 | #endif |
| @@ -1672,7 +1672,10 @@ Each element should be a string of the form ENVVARNAME=VALUE. | |||
| 1672 | If multiple entries define the same variable, the first one always | 1672 | If multiple entries define the same variable, the first one always |
| 1673 | takes precedence. | 1673 | takes precedence. |
| 1674 | The environment which Emacs inherits is placed in this variable | 1674 | The environment which Emacs inherits is placed in this variable |
| 1675 | when Emacs starts. */); | 1675 | when Emacs starts. |
| 1676 | Non-ASCII characters are encoded according to the initial value of | ||
| 1677 | `locale-coding-system', i.e. the elements must normally be decoded for use. | ||
| 1678 | See `setenv' and `getenv'. */); | ||
| 1676 | 1679 | ||
| 1677 | #ifndef VMS | 1680 | #ifndef VMS |
| 1678 | defsubr (&Scall_process); | 1681 | defsubr (&Scall_process); |