diff options
author | Alfred E. Heggestad <alfred.heggestad@gmail.com> | 2017-07-10 14:14:25 +0200 |
---|---|---|
committer | Alfred E. Heggestad <alfred.heggestad@gmail.com> | 2017-07-10 14:14:25 +0200 |
commit | d3ec61a536c22904e1357eb3bc0a961831d84f5d (patch) | |
tree | 7c9b8cd5f4bf0269ef60caf464808a9d31716d00 /src | |
parent | a5f85b09fa08166772851ab29c0677c4ce948146 (diff) |
ui: remove ui_input(), use ui_input_key() instead
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -61,19 +61,6 @@ void ui_unregister(struct ui *ui) /** - * Send input to the UI subsystem - * - * @param key Input character - */ -void ui_input(char key) -{ - static struct re_printf pf_stdout = {stdout_handler, NULL}; - - ui_handler(key, &pf_stdout); -} - - -/** * Send an input key to the UI subsystem, with a print function for response * * @param key Input character |