Mercurial > emacs
comparison src/callproc.c @ 28914:45b919961573
(Fgetenv_internal): Renamed from Fgetenv.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 15 May 2000 14:47:46 +0000 |
parents | 27b6d3367b47 |
children | f5c7d80ed4de |
comparison
equal
deleted
inserted
replaced
28913:363038c049d6 | 28914:45b919961573 |
---|---|
1270 } | 1270 } |
1271 | 1271 |
1272 return 0; | 1272 return 0; |
1273 } | 1273 } |
1274 | 1274 |
1275 DEFUN ("getenv", Fgetenv, Sgetenv, 1, 1, 0, | 1275 DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0, |
1276 "Return the value of environment variable VAR, as a string.\n\ | 1276 "Return the value of environment variable VAR, as a string.\n\ |
1277 VAR should be a string. Value is nil if VAR is undefined in the environment.\n\ | 1277 VAR should be a string. Value is nil if VAR is undefined in the environment.\n\ |
1278 This function consults the variable ``process-environment'' for its value.") | 1278 This function consults the variable ``process-environment'' for its value.") |
1279 (var) | 1279 (var) |
1280 Lisp_Object var; | 1280 Lisp_Object var; |
1484 The environment which Emacs inherits is placed in this variable\n\ | 1484 The environment which Emacs inherits is placed in this variable\n\ |
1485 when Emacs starts."); | 1485 when Emacs starts."); |
1486 | 1486 |
1487 #ifndef VMS | 1487 #ifndef VMS |
1488 defsubr (&Scall_process); | 1488 defsubr (&Scall_process); |
1489 defsubr (&Sgetenv); | 1489 defsubr (&Sgetenv_internal); |
1490 #endif | 1490 #endif |
1491 defsubr (&Scall_process_region); | 1491 defsubr (&Scall_process_region); |
1492 } | 1492 } |