summaryrefslogtreecommitdiffstats
path: root/tksao/frame/parser.Y
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/parser.Y')
-rw-r--r--tksao/frame/parser.Y4
1 files changed, 4 insertions, 0 deletions
diff --git a/tksao/frame/parser.Y b/tksao/frame/parser.Y
index 55d8410..95e69b1 100644
--- a/tksao/frame/parser.Y
+++ b/tksao/frame/parser.Y
@@ -2559,6 +2559,10 @@ mask : CLEAR_ {fr->maskClearCmd();}
| RANGE_ numeric numeric {fr->maskRangeCmd($2,$3);}
| SYSTEM_ coordSystem {fr->maskSystemCmd((Coord::CoordSystem)$2);}
| TRANSPARENCY_ numeric {fr->maskTransparencyCmd($2);}
+ | MARK_ INT {
+ // backward compatibility
+ fr->maskMarkCmd((FitsMask::MaskType)$2);
+ }
;
orient : 'X' {fr->orientCmd(Coord::XX);}