]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update after gnulib changed.
authorBruno Haible <bruno@clisp.org>
Thu, 18 May 2017 21:19:32 +0000 (23:19 +0200)
committerBruno Haible <bruno@clisp.org>
Thu, 18 May 2017 21:19:32 +0000 (23:19 +0200)
* gnulib-local/lib/fnmatch_loop.c.diff: Update.

gnulib-local/lib/fnmatch_loop.c.diff

index 85c299f3da593e9c901bbf6e8cc60bb64b4ff06d..3224f9316b52b134a3419050c30182a946f2c72c 100644 (file)
               *lastp = newp;                                                    \
               lastp = &newp->next
 ***************
-*** 1103,1114 ****
+*** 1103,1113 ****
       {
       case L_('*'):
         if (FCT (p, string, string_end, no_leading_period, flags) == 0)
 !         return 0;
-        /* FALLTHROUGH */
-  
+        FALLTHROUGH;
       case L_('+'):
         do
           {
             for (rs = string; rs <= string_end; ++rs)
               /* First match the prefix with the current pattern with the
                  current pattern.  */
---- 1119,1135 ----
+--- 1119,1134 ----
       {
       case L_('*'):
         if (FCT (p, string, string_end, no_leading_period, flags) == 0)
 !           retval = 0;
 !           goto done;
 !         }
-        /* FALLTHROUGH */
-  
+        FALLTHROUGH;
       case L_('+'):
         do
           {
               /* First match the prefix with the current pattern with the
                  current pattern.  */
 ***************
-*** 1130,1160 ****
+*** 1130,1159 ****
                                   : rs[-1] == '/' && NO_LEADING_PERIOD (flags),
                                   flags & FNM_FILE_NAME
                                   ? flags : flags & ~FNM_PERIOD) == 0)))
       case L_('?'):
         if (FCT (p, string, string_end, no_leading_period, flags) == 0)
 !         return 0;
-        /* FALLTHROUGH */
-  
+        FALLTHROUGH;
       case L_('@'):
         do
 !         /* I cannot believe it but 'strcat' is actually acceptable
   
         /* None of the patterns lead to a match.  */
         return FNM_NOMATCH;
---- 1151,1204 ----
+--- 1151,1203 ----
                                   : rs[-1] == '/' && NO_LEADING_PERIOD (flags),
                                   flags & FNM_FILE_NAME
                                   ? flags : flags & ~FNM_PERIOD) == 0)))
 !           retval = 0;
 !           goto done;
 !         }
-        /* FALLTHROUGH */
-  
+        FALLTHROUGH;
       case L_('@'):
         do
 !         {