summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2007-05-11 20:57:21 +0000
committerPaul Smith <psmith@gnu.org>2007-05-11 20:57:21 +0000
commiteda0e24ccdae279a2c12059242ef89a22c274047 (patch)
treec5c6f8db878558a3982a117c3c331642334794c2 /function.c
parent52ebc531ce68b369594267a716e93f53720c8f1b (diff)
downloadgunmake-eda0e24ccdae279a2c12059242ef89a22c274047.tar.gz
Fix some documentation gitches.
Fix an uninitialized variable. Add builtin rules for Objective C. Add a new debug line that shows where the commands that are about to be run were defined.
Diffstat (limited to 'function.c')
-rw-r--r--function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/function.c b/function.c
index caf87b9..e190647 100644
--- a/function.c
+++ b/function.c
@@ -693,7 +693,7 @@ func_lastword (char *o, char **argv, const char *funcname UNUSED)
{
unsigned int i;
const char *words = argv[0]; /* Use a temp variable for find_next_token */
- const char *p;
+ const char *p = NULL;
const char *t;
while ((t = find_next_token (&words, &i)))