[BACK]Return to lexi.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / indent

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/indent/lexi.c between version 1.90 and 1.91

version 1.90, 2021/10/11 20:13:46 version 1.91, 2021/10/11 20:31:06
Line 505  lexi(struct parser_state *state)
Line 505  lexi(struct parser_state *state)
         inbuf_skip();          inbuf_skip();
     }      }
   
     token_type ttype = lexi_alnum(state);      token_type alnum_ttype = lexi_alnum(state);
     if (ttype != end_of_file)      if (alnum_ttype != end_of_file)
         return lexi_end(ttype);          return lexi_end(alnum_ttype);
   
     /* Scan a non-alphanumeric token */      /* Scan a non-alphanumeric token */
   
Line 515  lexi(struct parser_state *state)
Line 515  lexi(struct parser_state *state)
     *token.e++ = inbuf_next();      *token.e++ = inbuf_next();
     *token.e = '\0';      *token.e = '\0';
   
       token_type ttype;
     bool unary_delim = false;   /* whether the current token forces a      bool unary_delim = false;   /* whether the current token forces a
                                  * following operator to be unary */                                   * following operator to be unary */
   

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91

CVSweb <webmaster@jp.NetBSD.org>