From a51cd6cc618a39819f04dcbe9cd9d804da75a9ac Mon Sep 17 00:00:00 2001 From: pagedmov Date: Sun, 9 Mar 2025 11:27:29 -0400 Subject: [PATCH] Improved support for wide characters --- src/shellenv/meta.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/shellenv/meta.rs b/src/shellenv/meta.rs index b29fbde..88ef225 100644 --- a/src/shellenv/meta.rs +++ b/src/shellenv/meta.rs @@ -5,7 +5,6 @@ use crate::prelude::*; pub struct MetaTab { timer_start: Instant, last_runtime: Option, - last_status: i32 } impl MetaTab { @@ -13,7 +12,6 @@ impl MetaTab { Self { timer_start: Instant::now(), last_runtime: None, - last_status: 0 } } pub fn start_timer(&mut self) { @@ -25,10 +23,4 @@ impl MetaTab { pub fn get_runtime(&self) -> Option { self.last_runtime } - pub fn set_status(&mut self, code: i32) { - self.last_status = code - } - pub fn last_status(&self) -> i32 { - self.last_status - } }