X-Git-Url: https://harishankar.org/repos/?p=evpf.git;a=blobdiff_plain;f=src%2Fmain.rs;h=d44387cc6cdf216f1528fa745ba8f43f18d26b8e;hp=8e54265b3c76a73fe7ff037aed19063e77ff94ef;hb=9256309493832e5c88f8f019c2603807b8bf74d8;hpb=a86a7c0712840275401e5ccd79322f3575b918fb diff --git a/src/main.rs b/src/main.rs index 8e54265..d44387c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -195,7 +195,10 @@ fn run_interactive_mode (match_num : ®ex::Regex) { let mut expr = String::new (); let mut rl = Editor::<()>::new (); + + // load the history file let hist_file = get_history_file (); + // if unable to load the history file, display the appropriate error if hist_file.is_err () { eprintln! ("{}", &hist_file.unwrap_err()); } else { @@ -258,7 +261,7 @@ fn main() { // collect the command line arguments - if any let args : Vec = env::args().collect (); // regular expression to match a number - let match_num = Regex::new (r"^\d+?\.*?\d*?$").unwrap (); + let match_num = Regex::new (r"^\-?\d+?\.*?\d*?$").unwrap (); if args.len () > 1 { // if arguments are provided run in command line mode - i.e. print the