/[m4]/m4/modules/format.c
ViewVC logotype

Diff of /m4/modules/format.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by gary, Mon Aug 20 19:42:38 2001 UTC revision 1.8 by gary, Sat Sep 1 20:05:27 2001 UTC
# Line 118  format (struct obstack *obs, int argc, m Line 118  format (struct obstack *obs, int argc, m
118            width = ARG_INT (argc, argv);            width = ARG_INT (argc, argv);
119            fmt++;            fmt++;
120          }          }
121        else if (isdigit (*fmt))        else if (isdigit ((int) *fmt))
122          {          {
123            do            do
124              {              {
125                fmt++;                fmt++;
126              }              }
127            while (isdigit (*fmt));            while (isdigit ((int) *fmt));
128          }          }
129    
130        /* Maximum precision.  */        /* Maximum precision.  */
# Line 136  format (struct obstack *obs, int argc, m Line 136  format (struct obstack *obs, int argc, m
136                prec = ARG_INT (argc, argv);                prec = ARG_INT (argc, argv);
137                ++fmt;                ++fmt;
138              }              }
139            else if (isdigit (*fmt))            else if (isdigit ((int) *fmt))
140              {              {
141                do                do
142                  {                  {
143                    fmt++;                    fmt++;
144                  }                  }
145                while (isdigit (*fmt));                while (isdigit ((int) *fmt));
146              }              }
147          }          }
148    

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26