diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-02 20:38:43 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-02 20:38:43 -0600 |
commit | 0d704e6a3db091f6ab38b4f535491e73cb0a9ce4 (patch) | |
tree | 3123c05840be16fa68a687d4ffbf554cc441d64d /src/makefile | |
parent | 441b137307ba5fbc22d0d32dca6e5c0f9559dbf5 (diff) | |
download | makers-0d704e6a3db091f6ab38b4f535491e73cb0a9ce4.tar.gz makers-0d704e6a3db091f6ab38b4f535491e73cb0a9ce4.zip |
don't leave dbg! in there oops
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index fb92a01..75805f6 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -401,12 +401,10 @@ impl<'a> Makefile<'a> { if line == "endef" { break; } - dbg!(&value, &line); if !value.is_empty() { value.extend(TokenString::text("\n")); } value.extend(line.parse()?); - dbg!(&value); } (line_tokens, value) } else { |