fix long output aaaargh
This commit is contained in:
parent
2af276e160
commit
920e9c2ff1
3 changed files with 2 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -22,7 +22,7 @@ checksum = "b03f7fbd470aa8b3ad163c85cce8bccfc11cc9c44ef12da0a4eddd98bd307352"
|
|||
|
||||
[[package]]
|
||||
name = "spl"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
dependencies = [
|
||||
"multicall",
|
||||
"once_cell",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "spl"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
edition = "2021"
|
||||
description = "Stack Pogramming Language: A simple, concise scripting language."
|
||||
license = "MIT"
|
||||
|
|
|
@ -37,7 +37,6 @@ pub fn to_rust(name: String, mut splrs: String) -> RustFunction {
|
|||
let mut hash_expr = None;
|
||||
let mut brace = 0;
|
||||
for c in splrs.chars() {
|
||||
dbg!(c, &rs, in_str, escaping, &hash_expr, brace);
|
||||
if in_str {
|
||||
if escaping {
|
||||
escaping = false;
|
||||
|
|
Loading…
Reference in a new issue