]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Need to stub frontend_keypress() in console.c as well as window.c.
authorSimon Tatham <anakin@pobox.com>
Thu, 24 Oct 2002 14:48:08 +0000 (14:48 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 24 Oct 2002 14:48:08 +0000 (14:48 +0000)
[originally from svn r2126]

console.c

index e49eaa099a90b7395542d8b5365e077341c93fea..80bca3cacc6ba87aabc5bfa0159439d5de992433 100644 (file)
--- a/console.c
+++ b/console.c
@@ -303,3 +303,11 @@ int console_get_line(const char *prompt, char *str,
     }
     return 1;
 }
+
+void frontend_keypress(void)
+{
+    /*
+     * This is nothing but a stub, in console code.
+     */
+    return;
+}