Remove unused function

This commit is contained in:
Johannes Altmanninger 2024-04-08 23:24:17 +02:00
parent 11bd5d7f0c
commit f9bdad3f77

View File

@ -904,13 +904,6 @@ pub fn reader_schedule_prompt_repaint() {
}
}
pub fn reader_handle_command(cmd: ReadlineCmd) {
if let Some(data) = current_data() {
let mut rls = ReadlineLoopState::new();
data.handle_readline_command(cmd, &mut rls);
}
}
/// Enqueue an event to the back of the reader's input queue.
pub fn reader_queue_ch(ch: CharEvent) {
if let Some(data) = current_data() {