Skip to content

Commit

Permalink
[ bump ] Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Jul 8, 2019
1 parent f1db11c commit e8f68f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pest = { version = "2.1.1", features = ["pretty-print"], optional = true }
pest_derive = { version = "2.1.0", optional = true }
clap = { version = "2.33.0", optional = true }
structopt = { version = "0.2", optional = true }
rustyline = { version = "4.0.0", optional = true }
rustyline = { version = "5.0.0", optional = true }
either = "1.5"

[features]
Expand Down
2 changes: 1 addition & 1 deletion src/cli/repl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ pub fn repl(mut tcs: TCS) {
match r.readline(PROMPT) {
Ok(line) => {
let line = line.trim();
r.add_history_entry(line.as_ref());
r.add_history_entry(line);
if let Some(ok) = repl_work(tcs, "RICH", line) {
tcs = ok;
} else {
Expand Down

0 comments on commit e8f68f8

Please sign in to comment.