summaryrefslogtreecommitdiffstats
path: root/ds9
diff options
context:
space:
mode:
Diffstat (limited to 'ds9')
-rw-r--r--ds9/library/parser.tac18
1 files changed, 9 insertions, 9 deletions
diff --git a/ds9/library/parser.tac b/ds9/library/parser.tac
index cd4f832..9cc4086 100644
--- a/ds9/library/parser.tac
+++ b/ds9/library/parser.tac
@@ -359,6 +359,15 @@ commands : commands command
| command
;
+int : INT_ {set _ $1}
+ | 123_ {set _ 123}
+ | 132_ {set _ 132}
+ | 213_ {set _ 213}
+ | 231_ {set _ 231}
+ | 312_ {set _ 312}
+ | 321_ {set _ 321}
+ ;
+
command : 2MASSCMD_ {2MASSDialog} 2mass
| 3DCMD_ {3DDialog} 3d
| ALIGNCMD_ align
@@ -423,15 +432,6 @@ command : 2MASSCMD_ {2MASSDialog} 2mass
| STRING_ {CommandLineFileName $1}
;
-int : INT_ {set _ $1}
- | 123_ {set _ $1}
- | 132_ {set _ $1}
- | 213_ {set _ $1}
- | 231_ {set _ $1}
- | 312_ {set _ $1}
- | 321_ {set _ $1}
- ;
-
numeric : int {set _ $1}
| REAL_ {set _ $1}
;