summaryrefslogtreecommitdiff
path: root/implicit.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2004-01-08 03:17:08 +0000
committerPaul Smith <psmith@gnu.org>2004-01-08 03:17:08 +0000
commit2b3ee46f4e4e73cb3d05921391e5cf64990483a7 (patch)
treeb7f978142e3296ec450be773a516f13e42cef398 /implicit.c
parenta35db9027526a8cad59c4e139ab224946245a7f7 (diff)
downloadgunmake-2b3ee46f4e4e73cb3d05921391e5cf64990483a7.tar.gz
Enhancements to the documentation (fixes bugs #1772 and 4898).
Add "!" to the list of shell escape characters: POSIX sh allows it to be used to negate the return value of the command.
Diffstat (limited to 'implicit.c')
-rw-r--r--implicit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/implicit.c b/implicit.c
index 1fa0534..165afdb 100644
--- a/implicit.c
+++ b/implicit.c
@@ -103,7 +103,7 @@ pattern_search (struct file *file, int archive,
/* This buffer records all the dependencies actually found for a rule. */
char **found_files = (char **) alloca (max_pattern_deps * sizeof (char *));
- /* This list notes if the associated dep has an "ignore_mtime" flag set. */
+ /* Remember whether the associated dep has an "ignore_mtime" flag set. */
unsigned char *found_files_im = (unsigned char *) alloca (max_pattern_deps * sizeof (unsigned char));
/* Number of dep names now in FOUND_FILES. */
unsigned int deps_found = 0;