Mercurial > emacs
changeset 51403:d30115b64d58
Use HAVE_FCNTL_H, not USG5.
(syms_of_callproc) <process-environment>: Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 02 Jun 2003 18:46:55 +0000 |
parents | cc6e47eeb0a8 |
children | e518bae63784 |
files | src/callproc.c |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callproc.c Mon Jun 02 18:45:00 2003 +0000 +++ b/src/callproc.c Mon Jun 02 18:46:55 2003 +0000 @@ -42,7 +42,7 @@ #endif #include <sys/file.h> -#ifdef USG5 +#ifdef HAVE_FCNTL_H #define INCLUDED_FCNTL #include <fcntl.h> #endif @@ -1672,7 +1672,10 @@ If multiple entries define the same variable, the first one always takes precedence. The environment which Emacs inherits is placed in this variable -when Emacs starts. */); +when Emacs starts. +Non-ASCII characters are encoded according to the initial value of +`locale-coding-system', i.e. the elements must normally be decoded for use. +See `setenv' and `getenv'. */); #ifndef VMS defsubr (&Scall_process);