-
Notifications
You must be signed in to change notification settings - Fork 464
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
Improper merging of unequal keys in map-merge #1283
Comments
Thxs for the report @davidkpiano! I can confirm this issue and also have a fix ready! In ast.hpp - hash_ ^= (elements()[i])->hash();
+ hash_ ^= (elements()[i])->hash() + (i + 1); |
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 23, 2015
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Jun 23, 2015
First solution approach was too naive, should use this instead:
|
xzyfer
added a commit
to xzyfer/sass-spec
that referenced
this issue
Jun 29, 2015
This PR add specs for sass/libsass#1283
Specs added sass/sass-spec#414 |
xzyfer
added a commit
to xzyfer/sass-spec
that referenced
this issue
Jul 8, 2015
This PR activates specs for sass/libsass#1283
This was referenced Jul 8, 2015
Thank you for fixing this! |
This is fixed and will be in 3.3. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TEST:
EXPECTED: (Ruby Sass)
ACTUAL: (LibSass 3.2.5)
I'll write specs for all these issues soon, I promise!
The text was updated successfully, but these errors were encountered: