update version number, correct printer

This commit is contained in:
Mark Thom
2019-05-06 22:14:38 -04:00
parent 3547ae2db4
commit da17d3070d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "scryer-prolog" name = "scryer-prolog"
version = "0.8.78" version = "0.8.79"
authors = ["Mark Thom <markjordanthom@gmail.com>"] authors = ["Mark Thom <markjordanthom@gmail.com>"]
repository = "https://github.com/mthom/scryer-prolog" repository = "https://github.com/mthom/scryer-prolog"
description = "A modern Prolog implementation written mostly in Rust." description = "A modern Prolog implementation written mostly in Rust."

View File

@@ -389,7 +389,7 @@ fn non_quoted_token<Iter: Iterator<Item=char>>(mut iter: Iter) -> bool {
} else if c == '{' { } else if c == '{' {
(iter.next() == Some('}') && iter.next().is_none()) (iter.next() == Some('}') && iter.next().is_none())
} else if solo_char!(c) { } else if solo_char!(c) {
false // !iter.next().is_none() false
} else { } else {
false false
} }