shithub: puzzles

Download patch

ref: 1d9ed93af6c202e5ec8a149c933d38b5ed98138c
parent: b78667ecff6cbedcb6821c2fd71ab01c3ec23346
author: Simon Tatham <anakin@pobox.com>
date: Tue May 31 08:41:18 EDT 2005

Apparently a number of Windows programs like to use ^Y as a keyboard
shortcut for Redo. I wasn't doing anything else with it, so why not?

[originally from svn r5880]

--- a/midend.c
+++ b/midend.c
@@ -315,7 +315,7 @@
 	if (!midend_undo(me))
             return 1;
     } else if (button == 'r' || button == 'R' ||
-               button == '\x12') {
+               button == '\x12' || button == '\x19') {
 	midend_stop_anim(me);
 	if (!midend_redo(me))
             return 1;