summaryrefslogtreecommitdiffstats
path: root/ds9/library/lex.fcl
blob: e7e6fdecb5402b3be700658a694c804e3832879f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
%{
source $ds9(root)/library/parser.tab.tcl
%}

%option noyywrap
%option caseless
%option nodefault
%option nointeractive

%%

\n        #
\s        # ignore whitespace
.         { set ::yylval $yytext; return $yytext }

2mass	    {return $::2MASS_}
3d	    {return $::3D_}
about	    {return $::ABOUT_}
align	    {return $::ALIGN_}
analysis    {return $::ANALYSIS_}
array	    {return $::ARRAY_}
asinh	    {return $::ASINH_}
close	    {return $::CLOSE_}
coord	    {return $::COORD_}
false	    {return $::FALSE_}
frame	    {return $::FRAME_}
name	    {return $::NAME_}
no	    {return $::NO_}
off	    {return $::OFF_}
on	    {return $::ON_}
open	    {return $::OPEN_}
pixels	    {return $::PIXELS_}
save	    {return $::SAVE_}
size	    {return $::SIZE_}
survey	    {return $::SURVEY_}
true	    {return $::TRUE_}
update	    {return $::UPDATE_}
yes	    {return $::YES_}