~ubuntu-branches/ubuntu/trusty/monit/trusty-proposed

« back to all changes in this revision

Viewing changes to src/l.l

  • Committer: Package Import Robot
  • Author(s): Sergey B Kirpichev
  • Date: 2013-09-05 17:03:07 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20130905170307-ae94md1vagm60e41
Tags: 1:5.6-1
ImportedĀ UpstreamĀ versionĀ 5.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
%%
119
119
 
120
120
{wws}             { /* Wide white space */ }
121
 
(#.*)?\\?\n       { lineno++; } 
 
121
(#.*)?\\?\n?      { lineno++; } 
122
122
 
123
123
is                {/* EMPTY */}
124
124
as                {/* EMPTY */}
397
397
                      create_URL(Str_ndup(yytext, strlen(yytext)-3));
398
398
                    BEGIN(URL_COND);
399
399
                  }
400
 
[0-9]{2}":"[0-9]{2}":"[0-9]{2} {
401
 
                    yylval.string= Str_dup(yytext);
402
 
                    save_arg(); return TIMESPEC;
403
 
                  }
404
400
 
405
401
{number}          {
406
402
                    yylval.number= atoi(yytext);