diff options
Diffstat (limited to 'ds9/parsers/masksendparser.tac')
-rw-r--r-- | ds9/parsers/masksendparser.tac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ds9/parsers/masksendparser.tac b/ds9/parsers/masksendparser.tac index bfb4f8a..9fdb15d 100644 --- a/ds9/parsers/masksendparser.tac +++ b/ds9/parsers/masksendparser.tac @@ -6,12 +6,14 @@ %token COLOR_ %token MARK_ +%token SYSTEM_ %token TRANSPARENCY_ %% masksend : COLOR_ {ProcessSendCmdGet mask color} | MARK_ {ProcessSendCmdGet mask mark} + | SYSTEM_ {ProcessSendCmdGet mask system} | TRANSPARENCY_ {ProcessSendCmdGet mask transparency} ; |