aboutsummaryrefslogtreecommitdiff
path: root/src/actionParser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'src/actionParser.mly')
-rwxr-xr-xsrc/actionParser.mly4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actionParser.mly b/src/actionParser.mly
index 6318ca6..296467a 100755
--- a/src/actionParser.mly
+++ b/src/actionParser.mly
@@ -7,7 +7,6 @@
%token EOF
%token LEFT RIGHT UP DOWN
%token NPAGE PPAGE HOME END
-%token RESIZE
%token DELETE
%token SEARCH
%token E U V Y P
@@ -16,6 +15,7 @@
%token <int*int>BUTTON1_CLICKED
%token <int*int>BUTTON1_RELEASED
%token COMMAND
+%token RESIZE
%start <Actions.actions> normal
%%
@@ -27,7 +27,6 @@ normal:
| RIGHT { Move (Right 1) }
| UP { Move (Up 1) }
| DOWN { Move (Down 1) }
- | RESIZE { Resize }
| DELETE { Delete }
| E { Edit }
| U { Undo }
@@ -43,3 +42,4 @@ normal:
| BUTTON1_CLICKED { Button1_clicked $1}
| BUTTON1_RELEASED{ Button1_released $1}
| COMMAND { Command }
+ | RESIZE { Resize }