From c2e37334a59935f0da3220aa304fd2192a6771d0 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 24 Oct 2002 14:48:08 +0000 Subject: [PATCH] Need to stub frontend_keypress() in console.c as well as window.c. [originally from svn r2126] --- console.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/console.c b/console.c index e49eaa09..80bca3ca 100644 --- 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; +}