Skip to content

Commit 0cde339

Browse files
committed
Writing
1 parent de34340 commit 0cde339

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sush"
3-
version = "2025.10.3"
3+
version = "2025.12.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/core.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ use crate::{proc_ctrl, signal};
1818
use std::sync::Arc;
1919
use std::sync::atomic::AtomicBool;
2020

21-
type BuiltinFunc = fn(&mut ShellCore, &[String]) -> i32;
21+
type BuiltinFn = fn(&mut ShellCore, &[String]) -> i32;
2222

2323
#[derive(Default)]
2424
pub struct ShellCore {
2525
pub flags: String,
2626
pub db: DataBase,
2727
rewritten_history: HashMap<usize, String>,
2828
pub history: Vec<String>,
29-
pub builtins: HashMap<String, BuiltinFunc>,
29+
pub builtins: HashMap<String, BuiltinFn>,
3030
pub sigint: Arc<AtomicBool>,
3131
pub is_subshell: bool,
3232
pub source_function_level: i32,

0 commit comments

Comments
 (0)