aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--src/sexp/case.rs1
2 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 3fda0f6..ed326b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
/target
*#*#
+*.#*
*~
diff --git a/src/sexp/case.rs b/src/sexp/case.rs
index eb98446..d78f7ad 100644
--- a/src/sexp/case.rs
+++ b/src/sexp/case.rs
@@ -54,7 +54,6 @@ impl SExp {
* ```
*/
pub fn matches_pat(&self, pat: &SExp) -> Option<Vec<(String, SExp)>> {
- println!("matchin {self} against {pat}");
match (self, pat) {
(a, b) if a == b => Some(vec![]),