]> git.eshelyaron.com Git - emacs.git/commitdiff
Use HAVE_FCNTL_H, not USG5.
authorDave Love <fx@gnu.org>
Mon, 2 Jun 2003 18:46:55 +0000 (18:46 +0000)
committerDave Love <fx@gnu.org>
Mon, 2 Jun 2003 18:46:55 +0000 (18:46 +0000)
(syms_of_callproc) <process-environment>: Doc fix.

src/callproc.c

index 7600957bc179d5f0304fd4c2374cf148ac508aa5..d92176ccd91d65efec7deace4d6e2ea5b210a045 100644 (file)
@@ -42,7 +42,7 @@ extern int errno;
 #endif
 
 #include <sys/file.h>
-#ifdef USG5
+#ifdef HAVE_FCNTL_H
 #define INCLUDED_FCNTL
 #include <fcntl.h>
 #endif
@@ -1672,7 +1672,10 @@ Each element should be a string of the form ENVVARNAME=VALUE.
 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);