diff --git a/src/input.rs b/src/input.rs index bb6f9e2ea..ade09f8ac 100644 --- a/src/input.rs +++ b/src/input.rs @@ -574,11 +574,6 @@ pub fn queue_char(&mut self, ch: CharEvent) { self.queue.push_back(ch); } - /// Enqueue a readline command. Convenience cover over queue_char(). - pub fn queue_readline(&mut self, cmd: ReadlineCmd) { - self.queue_char(CharEvent::from_readline(cmd)); - } - /// Sets the return status of the most recently executed input function. pub fn function_set_status(&mut self, status: bool) { self.function_status = status;