]> sjero.net Git - wget/commitdiff
[svn] html-url.c: A bunch of fixup of `--page-requisites'-related comments to reflect
authordan <devnull@localhost>
Wed, 10 Jan 2001 02:54:52 +0000 (18:54 -0800)
committerdan <devnull@localhost>
Wed, 10 Jan 2001 02:54:52 +0000 (18:54 -0800)
Hrvoje's changes to my code when transplanting it into this new file, to fix
spelling mistakes, to clarify, etc.

src/ChangeLog
src/html-url.c

index 736a18ff197eac6a9c5ccbb4cbe8d41d8eb10937..c2fc00d23e18d0fc9cf2e89be806b9724c6bc5f2 100644 (file)
@@ -1,6 +1,8 @@
 2001-01-09  Dan Harkless  <wget@harkless.org>
 
-       * html-url.c: Addition and clarification of comments related to -p.
+       * html-url.c: A bunch of fixup of `--page-requisites'-related
+       comments to reflect Hrvoje's changes to my code when transplanting
+       it into this new file, to fix spelling mistakes, to clarify, etc.
 
        * url.c (write_backup_file): Clarified a comment.
 
index 8edf16a6a1342f72183dbb5f0dbd40e4bb646a3f..e85aee696262d33193f4ae0a9d691cdde7675638 100644 (file)
@@ -165,7 +165,7 @@ init_interesting (void)
        /* Normally here we could say:
           interesting_tags[i] = name;
           But we need to respect the settings of --ignore-tags and
-          --follow-tags, so the code gets a bit harier.  */
+          --follow-tags, so the code gets a bit hairier.  */
 
        if (opt.ignore_tags)
          {
@@ -175,8 +175,7 @@ init_interesting (void)
               through if there's no match. */
            int j, lose = 0;
            for (j = 0; opt.ignore_tags[j] != NULL; j++)
-             /* Loop through all the tags this user doesn't care
-                 about. */
+             /* Loop through all the tags this user doesn't care about. */
              if (strcasecmp(opt.ignore_tags[j], name) == EQ)
                {
                  lose = 1;
@@ -188,8 +187,8 @@ init_interesting (void)
 
        if (opt.follow_tags)
          {
-           /* --follow-tags was specified.  Only match these specific
-              tags, so return FALSE if we don't match one of them. */
+           /* --follow-tags was specified.  Only match these specific tags, so
+              continue back to top of for if we don't match one of them. */
            int j, win = 0;
            for (j = 0; opt.follow_tags[j] != NULL; j++)
              /* Loop through all the tags this user cares about. */
@@ -199,12 +198,11 @@ init_interesting (void)
                  break;
                }
            if (!win)
-             continue;         /* wasn't one of the explicitly
-                                   desired tags */
+             continue;  /* wasn't one of the explicitly desired tags */
          }
 
        /* If we get to here, --follow-tags isn't being used or the
-          tag is among the ones that are follwed, and --ignore-tags,
+          tag is among the ones that are followed, and --ignore-tags,
           if specified, didn't include this tag, so it's an
           "interesting" one. */
        interesting_tags[ind++] = name;