Nilesh Patra pushed to branch master at lintian / lintian
Commits:
-
43b7d3c8
by Rafael Laboissière at 2025-09-16T21:56:30-03:00
1 changed file:
Changes:
... | ... | @@ -160,12 +160,12 @@ sub source { |
160 | 160 | }
|
161 | 161 | }else {
|
162 | 162 | if (length $line) {
|
163 | - $continued .= "\n".$line;
|
|
163 | + $continued .= $line."\n";
|
|
164 | 164 | next if @lines;
|
165 | 165 | }
|
166 | 166 | }
|
167 | 167 | |
168 | - $line = $continued . ($standard>=$CURRENT_WATCH_VERSION? "\n":$line)
|
|
168 | + $line = $continued . ($standard>=$CURRENT_WATCH_VERSION? "":$line)
|
|
169 | 169 | if length $continued;
|
170 | 170 | |
171 | 171 | $continued = $EMPTY;
|