Skip to content

Commit

Permalink
put newline before own #line directive
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Sep 30, 2021
1 parent 5fb6f86 commit 1276430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- whitespace fix for #line directive

0.16 2021-08-08
- planning now works on threaded Perl - thanks @zmughal

Expand Down
2 changes: 1 addition & 1 deletion FFTW3.pd
Original file line number Diff line number Diff line change
Expand Up @@ -257,5 +257,5 @@ sub slurp
local $/ = undef;
my $contents = <FD>;
close FD;
return qq{#line 0 "$filename"\n\n} . $contents;
return qq{\n#line 0 "$filename"\n\n} . $contents;
}

0 comments on commit 1276430

Please sign in to comment.