aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-14 12:20:49 +0300
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-14 12:20:49 +0300
commit52263c39dd6006cce5fc938ec60751ab45b73f8b (patch)
tree37d1e26953c47ff6864de8aa90f6514059939e07 /src
parent0975bff6ddcf48de4072561adea67a5c1cd4456f (diff)
downloadmyslip-52263c39dd6006cce5fc938ec60751ab45b73f8b.tar.gz
myslip-52263c39dd6006cce5fc938ec60751ab45b73f8b.zip
fix: removed unneccessary print, excluded .#[file] emacs backups in gitignore
Diffstat (limited to 'src')
-rw-r--r--src/sexp/case.rs1
1 files changed, 0 insertions, 1 deletions
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![]),