~ubuntu-branches/ubuntu/vivid/xorg-server/vivid

« back to all changes in this revision

Viewing changes to hw/xwin/winprefslex.l

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-07-03 12:03:57 UTC
  • mfrom: (1.1.56)
  • Revision ID: package-import@ubuntu.com-20130703120357-caosebpn11zu2zj0
Tags: 2:1.14.1-0ubuntu0.8
Use correct version for libxfixes3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include <string.h>
38
38
#include "winprefsyacc.h"
39
39
 
40
 
extern YYSTYPE yylval;
41
 
extern char *yytext;
42
40
extern int yyparse(void);
43
41
 
44
42
extern void ErrorF (const char* /*f*/, ...);
45
43
 
46
 
int yylineno;
47
 
 
48
44
/* Copy the parsed string, must be free()d in yacc parser */
49
45
static char *makestr(char *str)
50
46
{
62
58
%}
63
59
 
64
60
%option yylineno
 
61
%option nounput
 
62
%option noinput
 
63
%option never-interactive
65
64
 
66
65
%%
67
66
\#.*[\r\n]              { /* comment */ return NEWLINE; }