Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 98af0aa

Browse files
committed
Messed up output
1 parent 6920075 commit 98af0aa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/compiler.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,6 @@ namespace Sass {
861861
void Compiler::addCustomImporter(struct SassImporter* importer)
862862
{
863863
if (importer == nullptr) return;
864-
std::cerr << "addCustomImporter\n";
865864
cImporters.emplace_back(importer);
866865
// need to sort the array afterwards (no big deal)
867866
sort(cImporters.begin(), cImporters.end(), cmpImporterPrio);

src/inspect.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ namespace Sass {
5050
uint8_t chr = text[i];
5151
switch (chr) {
5252
case $lf:
53-
append_mandatory_space();
53+
append_char($space);
5454
afterNewline = true;
5555
break;
5656

5757
case $space:
5858
if (!afterNewline) {
59-
append_mandatory_space();
59+
append_char($space);
6060
}
6161
break;
6262

0 commit comments

Comments
 (0)