diff options
Diffstat (limited to 'tksao/frame/parser.Y')
-rw-r--r-- | tksao/frame/parser.Y | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tksao/frame/parser.Y b/tksao/frame/parser.Y index cc20bb5..44dc73d 100644 --- a/tksao/frame/parser.Y +++ b/tksao/frame/parser.Y @@ -158,7 +158,7 @@ static void setProps(unsigned short* props, unsigned short prop, int value); %token CALLBACK_ %token CANVAS_ %token CATALOG_ -%token CELESTRIAL_ +%token CELESTIAL_ %token CENTER_ %token CENTROID_ %token CHANNEL_ @@ -1341,8 +1341,9 @@ hasMarker : HIGHLITE_ {fr->hasMarkerHighlitedCmd();} ; hasWCS : coordSystem {fr->hasWCSCmd((Coord::CoordSystem)$1);} - | EQUATORIAL_ coordSystem {fr->hasWCSEquCmd((Coord::CoordSystem)$2);} - | CELESTRIAL_ coordSystem {fr->hasWCSCelCmd((Coord::CoordSystem)$2);} + | EQUATORIAL_ coordSystem {fr->hasWCSCelCmd((Coord::CoordSystem)$2);} + | CELESTIAL_ coordSystem {fr->hasWCSCelCmd((Coord::CoordSystem)$2);} + | LINEAR_ coordSystem {fr->hasWCSLinearCmd((Coord::CoordSystem)$2);} | ALT_ {fr->hasWCSAltCmd();} | THREED_ coordSystem {fr->hasWCS3DCmd((Coord::CoordSystem)$2);} ; |