diff options
author | Paul Smith <psmith@gnu.org> | 2000-01-11 07:31:42 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-01-11 07:31:42 +0000 |
commit | b7b83d6398e8e552dd1b9d70d18d7262753e03d4 (patch) | |
tree | cd93d86916bbfca0bac321a121ad67dcd6eb37df /job.c | |
parent | af44f16799fa185e2729cda1653c80d29b598642 (diff) | |
download | gunmake-b7b83d6398e8e552dd1b9d70d18d7262753e03d4.tar.gz |
* Change $(call...) to not expand arguments by default.
* Unify the way arguments are passed to builtin functions in function.c.
Diffstat (limited to 'job.c')
-rw-r--r-- | job.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1341,11 +1341,9 @@ new_job (file) `struct child', and add that to the chain. */ c = (struct child *) xmalloc (sizeof (struct child)); + bzero ((char *)c, sizeof (struct child)); c->file = file; c->command_lines = lines; - c->command_line = 0; - c->command_ptr = 0; - c->environment = 0; c->sh_batch_file = NULL; /* Fetch the first command line to be run. */ |