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

Diff for /src/usr.bin/mg/tags.c between version 1.26 and 1.27

version 1.26, 2023/03/29 10:42:34 version 1.27, 2023/03/29 19:09:04
Line 229 
Line 229 
         }          }
         s = SLIST_FIRST(&shead);          s = SLIST_FIRST(&shead);
         SLIST_REMOVE_HEAD(&shead, entry);          SLIST_REMOVE_HEAD(&shead, entry);
         if (loadbuffer(s->bname) == FALSE)          if (loadbuffer(s->bname) == FALSE) {
                   free(s->bname);
                   free(s);
                 return (FALSE);                  return (FALSE);
           }
         curwp->w_dotline = s->dotline;          curwp->w_dotline = s->dotline;
         curwp->w_doto = s->doto;          curwp->w_doto = s->doto;
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27