Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for 3.4.2 #141

Open
wants to merge 6 commits into
base: origin-3.4.2-1723226213
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions spec/libsass-todo-issues/issue_2446/dart-error
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Error: Invalid UTF-8.
$\xEF\xBF\xBD:D&(22#222222%0:/2222-2%22%222/2-2%22%2222-2%22%22)/22
^
spec/libsass-issues/issue_2446/input.scss 1:2 root stylesheet
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_2446/error
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Error: Invalid UTF-8 character "\xE5"
on line 1 of /sass/spec/libsass-issues/issue_2446/input.scss
Use --trace for backtrace.
Empty file.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_2446/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$å:D&(22#222222%0:/2222-2%22%222/2-2%22%2222-2%22%22)/22
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_2446/status
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65
4 changes: 3 additions & 1 deletion src/eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,9 @@ namespace Sass {
m->length());
for (auto key : m->keys()) {
Expression_Ptr ex_key = key->perform(this);
Expression_Ptr ex_val = m->at(key)->perform(this);
Expression_Ptr ex_val = m->at(key);
if (ex_val == NULL) continue;
ex_val = ex_val->perform(this);
*mm << std::make_pair(ex_key, ex_val);
}

Expand Down
Loading