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

Regression in interpolating lists function return value #1610

Closed
xzyfer opened this issue Oct 20, 2015 · 0 comments · Fixed by #1611
Closed

Regression in interpolating lists function return value #1610

xzyfer opened this issue Oct 20, 2015 · 0 comments · Fixed by #1611

Comments

@xzyfer
Copy link
Contributor

xzyfer commented Oct 20, 2015

@function foo() {
  @return "foo" + "," + bar;
}
foo {
  with-semicolon: #{foo()};
  without-semicolon: #{foo()}
}

Ruby Sass

foo {
  with-semicolon: foo,bar;
  without-semicolon: foo,bar; }

LibSass 3.3.0-beta.3

foo {
  with-semicolon: foo,bar;
  without-semicolon: "foo,bar" ; }

This can complete changes the semantics of declaration i.e. font-family: "foo,bar"

Specs added sass/sass-spec#547

@xzyfer xzyfer added this to the 3.3 milestone Oct 20, 2015
xzyfer added a commit to xzyfer/sass-spec that referenced this issue Oct 20, 2015
@xzyfer xzyfer self-assigned this Oct 20, 2015
xzyfer added a commit to xzyfer/sass-spec that referenced this issue Oct 20, 2015
xzyfer added a commit to xzyfer/libsass that referenced this issue Oct 20, 2015
This PR fixes a regression with interpolated lists being turned
into strings if the terminating semicolon on was missing.

Fixes sass#1610
Specs sass/sass-spec#548
xzyfer added a commit to xzyfer/libsass that referenced this issue Oct 20, 2015
This PR fixes a regression with interpolated lists being turned
into strings if the terminating semicolon on was missing.

Fixes sass#1610
Specs sass/sass-spec#548
xzyfer added a commit to xzyfer/sass-spec that referenced this issue Oct 22, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant