summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-05-10 15:40:15 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-05-10 15:40:15 (GMT)
commite12f63777bc5cfd80313c62f706c8dd595af005a (patch)
tree527205d9eda4d512ecd644b823adc39d5470aff6
parent64ff2c1f3dbbf15e0c89feeced72ba783a780df4 (diff)
downloadblt-e12f63777bc5cfd80313c62f706c8dd595af005a.zip
blt-e12f63777bc5cfd80313c62f706c8dd595af005a.tar.gz
blt-e12f63777bc5cfd80313c62f706c8dd595af005a.tar.bz2
update ds9 parsers
-rw-r--r--ds9/parsers/envilex.fcl2
-rw-r--r--ds9/parsers/enviparser.tac4
-rw-r--r--ds9/parsers/mecubelex.fcl2
-rw-r--r--ds9/parsers/mecubeparser.tac4
-rw-r--r--ds9/parsers/nrrdlex.fcl1
-rw-r--r--ds9/parsers/nrrdparser.tac2
-rw-r--r--ds9/parsers/photolex.fcl1
-rw-r--r--ds9/parsers/photoparser.tac2
8 files changed, 0 insertions, 18 deletions
diff --git a/ds9/parsers/envilex.fcl b/ds9/parsers/envilex.fcl
index 012cdaf..47398a9 100644
--- a/ds9/parsers/envilex.fcl
+++ b/ds9/parsers/envilex.fcl
@@ -7,9 +7,7 @@
%%
-mask {return $MASK_}
new {return $NEW_}
-slice {return $SLICE_}
#include string.fin
diff --git a/ds9/parsers/enviparser.tac b/ds9/parsers/enviparser.tac
index 9cffdb7..d4461d2 100644
--- a/ds9/parsers/enviparser.tac
+++ b/ds9/parsers/enviparser.tac
@@ -5,9 +5,7 @@
%start command
-%token MASK_
%token NEW_
-%token SLICE_
%%
@@ -20,9 +18,7 @@ envi : opts STRING_ {ImportENVIFile $2 [FindENVIDataFile $2]; FinishLoad}
;
opts :
- | MASK_
| NEW_ {CreateFrame}
- | SLICE_
;
%%
diff --git a/ds9/parsers/mecubelex.fcl b/ds9/parsers/mecubelex.fcl
index ad9d44a..e2bf949 100644
--- a/ds9/parsers/mecubelex.fcl
+++ b/ds9/parsers/mecubelex.fcl
@@ -7,9 +7,7 @@
%%
-mask {return $MASK_}
new {return $NEW_}
-slice {return $SLICE_}
#include string.fin
diff --git a/ds9/parsers/mecubeparser.tac b/ds9/parsers/mecubeparser.tac
index cb4b8ff..406a414 100644
--- a/ds9/parsers/mecubeparser.tac
+++ b/ds9/parsers/mecubeparser.tac
@@ -5,9 +5,7 @@
%start command
-%token MASK_
%token NEW_
-%token SLICE_
%%
@@ -21,8 +19,6 @@ mecube : opts {MECubeCmdLoad {}}
opts :
| NEW_ {CreateFrame}
- | MASK_
- | SLICE_
;
%%
diff --git a/ds9/parsers/nrrdlex.fcl b/ds9/parsers/nrrdlex.fcl
index 820bbbe..1f7836e 100644
--- a/ds9/parsers/nrrdlex.fcl
+++ b/ds9/parsers/nrrdlex.fcl
@@ -9,7 +9,6 @@
mask {return $MASK_}
new {return $NEW_}
-slice {return $SLICE_}
#include string.fin
diff --git a/ds9/parsers/nrrdparser.tac b/ds9/parsers/nrrdparser.tac
index 49b4d1f..b0511a3 100644
--- a/ds9/parsers/nrrdparser.tac
+++ b/ds9/parsers/nrrdparser.tac
@@ -7,7 +7,6 @@
%token MASK_
%token NEW_
-%token SLICE_
%%
@@ -22,7 +21,6 @@ nrrd : opts {NRRDCmdLoad {}}
opts :
| NEW_ {CreateFrame}
| MASK_ {NRRDCmdSet load,layer mask}
- | SLICE_
;
%%
diff --git a/ds9/parsers/photolex.fcl b/ds9/parsers/photolex.fcl
index 49fe286..c39bd1b 100644
--- a/ds9/parsers/photolex.fcl
+++ b/ds9/parsers/photolex.fcl
@@ -7,7 +7,6 @@
%%
-mask {return $MASK_}
new {return $NEW_}
slice {return $SLICE_}
diff --git a/ds9/parsers/photoparser.tac b/ds9/parsers/photoparser.tac
index 7187e9f..2cf3dc7 100644
--- a/ds9/parsers/photoparser.tac
+++ b/ds9/parsers/photoparser.tac
@@ -5,7 +5,6 @@
%start command
-%token MASK_
%token NEW_
%token SLICE_
@@ -20,7 +19,6 @@ photo : opts {PhotoCmdLoad {}}
;
opts :
- | MASK_
| NEW_ {CreateFrame}
| SLICE_ {PhotoCmdSet load,mode slice}
;