From 2bdabe31cf42b34f8d7bb6015c383482cfb5d068 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 20 Dec 2009 10:01:57 +0000 Subject: Jonas Koelker points out that the backspace key didn't work in GTK Guess, because Guess expected ^H whereas GTK generated ^?. Other puzzles that use Backspace do it by being prepared to see either, which seems wasteful. Now the midend normalises both into ^H, so front ends can generate whichever they like while puzzles can safely just look for ^H. [originally from svn r8786] --- filling.c | 1 - 1 file changed, 1 deletion(-) (limited to 'filling.c') diff --git a/filling.c b/filling.c index 3fcc3b1..896fe41 100644 --- a/filling.c +++ b/filling.c @@ -1097,7 +1097,6 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds, case '\r': case '\n': case '\b': - case '\177': button = 0; break; default: -- cgit v1.1