[BACK]Return to vfontedpr.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / vgrind

Diff for /src/usr.bin/vgrind/Attic/vfontedpr.c between version 1.4 and 1.5

version 1.4, 2001/07/12 05:17:29 version 1.5, 2001/11/19 19:02:17
Line 356 
Line 356 
 putScp(os)  putScp(os)
     char *os;      char *os;
 {  {
     register char *s = os;              /* pointer to unmatched string */      char *s = os;                       /* pointer to unmatched string */
     char dummy[BUFSIZ];                 /* dummy to be used by expmatch */      char dummy[BUFSIZ];                 /* dummy to be used by expmatch */
     char *comptr;                       /* end of a comment delimiter */      char *comptr;                       /* end of a comment delimiter */
     char *acmptr;                       /* end of a comment delimiter */      char *acmptr;                       /* end of a comment delimiter */
Line 593 
Line 593 
   
 static int  static int
 width(s, os)  width(s, os)
         register char *s, *os;          char *s, *os;
 {  {
         register int i = 0;          int i = 0;
   
         while (s < os) {          while (s < os) {
                 if (*s == '\t') {                  if (*s == '\t') {
Line 614 
Line 614 
   
 static void  static void
 putcp(c)  putcp(c)
         register int c;          int c;
 {  {
   
         switch(c) {          switch(c) {
Line 695 
Line 695 
   
 static int  static int
 iskw(s)  iskw(s)
         register char *s;          char *s;
 {  {
         register char **ss = l_keywds;          char **ss = l_keywds;
         register int i = 1;          int i = 1;
         register char *cp = s;          char *cp = s;
   
         while (++cp, isidchr(*cp))          while (++cp, isidchr(*cp))
                 i++;                  i++;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5