diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/callproc.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0d8dfc6aa36..9c5e1eefa77 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * callproc.c (child_setup): Remove spurious *. | ||
| 4 | |||
| 3 | * lisp.h (Fget_text_property): Declare. | 5 | * lisp.h (Fget_text_property): Declare. |
| 4 | (have_menus_p): Declare it here rather than in sys-dep header files. | 6 | (have_menus_p): Declare it here rather than in sys-dep header files. |
| 5 | * macterm.h (have_menus_p): | 7 | * macterm.h (have_menus_p): |
diff --git a/src/callproc.c b/src/callproc.c index c10dea566bf..3e6833aed44 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1388,7 +1388,7 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir) | |||
| 1388 | while (*p != 0) | 1388 | while (*p != 0) |
| 1389 | { | 1389 | { |
| 1390 | while (*q != 0 && strchr (*q, '=') == NULL) | 1390 | while (*q != 0 && strchr (*q, '=') == NULL) |
| 1391 | *q++; | 1391 | q++; |
| 1392 | *p = *q++; | 1392 | *p = *q++; |
| 1393 | if (*p != 0) | 1393 | if (*p != 0) |
| 1394 | p++; | 1394 | p++; |