From bb48738c4111f5f4e2faa40fe67ae1b8b9d7c2eb Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 29 Nov 2017 15:51:39 +0100 Subject: Rework on the Sheet.ml API : removed low level functions, made the sheet mutable --- src/actionParser.mly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/actionParser.mly') 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 BUTTON1_CLICKED %token BUTTON1_RELEASED %token COMMAND +%token RESIZE %start 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 } -- cgit v1.2.3