summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/masksendparser.tac
diff options
context:
space:
mode:
Diffstat (limited to 'ds9/parsers/masksendparser.tac')
-rw-r--r--ds9/parsers/masksendparser.tac4
1 files changed, 4 insertions, 0 deletions
diff --git a/ds9/parsers/masksendparser.tac b/ds9/parsers/masksendparser.tac
index bfb4f8a..94d9acd 100644
--- a/ds9/parsers/masksendparser.tac
+++ b/ds9/parsers/masksendparser.tac
@@ -6,12 +6,16 @@
%token COLOR_
%token MARK_
+%token RANGE_
+%token SYSTEM_
%token TRANSPARENCY_
%%
masksend : COLOR_ {ProcessSendCmdGet mask color}
| MARK_ {ProcessSendCmdGet mask mark}
+ | RANGE_ {ProcessSendCmdGet2 mask low high}
+ | SYSTEM_ {ProcessSendCmdGet mask system}
| TRANSPARENCY_ {ProcessSendCmdGet mask transparency}
;