Need to stub frontend_keypress() in console.c as well as window.c.

[originally from svn r2126]
This commit is contained in:
Simon Tatham 2002-10-24 14:48:08 +00:00
Родитель 6e549a6db3
Коммит c2e37334a5
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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;
}