aboutsummaryrefslogtreecommitdiff
path: root/src/sexp/display.rs
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-09 21:18:48 +0300
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-09 21:18:48 +0300
commit8062ed87d30fa7628f26cfd7bb94bb0e7401752b (patch)
tree706bf5e34678622111a23c7045f667c1acbe7c6d /src/sexp/display.rs
parent3e1bf7f9946efe70d452c71494ac77ed39110804 (diff)
downloadmyslip-8062ed87d30fa7628f26cfd7bb94bb0e7401752b.tar.gz
myslip-8062ed87d30fa7628f26cfd7bb94bb0e7401752b.zip
Revert adding of print (its behavior was poorly designed).
This reverts commit 3e1bf7f9946efe70d452c71494ac77ed39110804.
Diffstat (limited to 'src/sexp/display.rs')
-rw-r--r--src/sexp/display.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sexp/display.rs b/src/sexp/display.rs
index dc5d6cb..c3db144 100644
--- a/src/sexp/display.rs
+++ b/src/sexp/display.rs
@@ -27,7 +27,6 @@ impl fmt::Display for SLeaf {
Var(s) => s.to_string(),
Quote => "quote".to_string(),
Vector => "vector".to_string(),
- Print => "print".to_string(),
Let => "let".to_string(),
Nil => "()".to_string(),
})