From e0bbeb647b0a1f856fd1414da08cc06da668c744 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 13 Feb 2024 00:23:31 +0100 Subject: [PATCH] Remove unused function --- src/input.rs | 5 ----- 1 file changed, 5 deletions(-) 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;