diff options
| author | Juanma Barranquero | 2009-01-18 03:28:35 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-01-18 03:28:35 +0000 |
| commit | acf20901186d76a6d5db0008fba8d1afa48c5671 (patch) | |
| tree | ea768b6f5e15374dd43cadde52710d17ca5d61d3 /src | |
| parent | 0ca77a9234ff1555b69dcba48bc9a383c404c3ef (diff) | |
| download | emacs-acf20901186d76a6d5db0008fba8d1afa48c5671.tar.gz emacs-acf20901186d76a6d5db0008fba8d1afa48c5671.zip | |
* callproc.c (Fgetenv_internal): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/callproc.c | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 22a9b1909eb..c9d8f444453 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-01-18 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * callproc.c (Fgetenv_internal): Doc fix. | ||
| 4 | |||
| 1 | 2009-01-16 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-01-16 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * xfns.c (x_make_gc): Don't allocate stipple member for gc_values; | 7 | * xfns.c (x_make_gc): Don't allocate stipple member for gc_values; |
diff --git a/src/callproc.c b/src/callproc.c index 01be3ac971c..e84c0c64148 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1390,15 +1390,11 @@ DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 2, 0, | |||
| 1390 | VARIABLE should be a string. Value is nil if VARIABLE is undefined in | 1390 | VARIABLE should be a string. Value is nil if VARIABLE is undefined in |
| 1391 | the environment. Otherwise, value is a string. | 1391 | the environment. Otherwise, value is a string. |
| 1392 | 1392 | ||
| 1393 | This function searches `process-environment' for VARIABLE. If it is | 1393 | This function searches `process-environment' for VARIABLE. |
| 1394 | not found there, then it continues the search in the environment list | ||
| 1395 | of the selected frame. | ||
| 1396 | 1394 | ||
| 1397 | If optional parameter ENV is a list, then search this list instead of | 1395 | If optional parameter ENV is a list, then search this list instead of |
| 1398 | `process-environment', and return t when encountering a negative entry. | 1396 | `process-environment', and return t when encountering a negative entry |
| 1399 | 1397 | \(an entry for a variable with no value). */) | |
| 1400 | If it is a frame, then this function will ignore `process-environment' and | ||
| 1401 | will simply look up the variable in that frame's environment. */) | ||
| 1402 | (variable, env) | 1398 | (variable, env) |
| 1403 | Lisp_Object variable, env; | 1399 | Lisp_Object variable, env; |
| 1404 | { | 1400 | { |