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

Treat url(<string>) as a normal functions, per spec change. #90

Merged
merged 2 commits into from Nov 5, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Fix warning.

  • Loading branch information
SimonSapin committed Oct 30, 2015
commit fa477fd8cba24a6942c20b22e45aa4f4f803236c
@@ -121,7 +121,7 @@ impl<'a> ToCss for Token<'a> {
if truncated_start != 0 {
try!(write!(dest, "{:X}", truncated_start));
}
for _ in (0..question_marks) {
for _ in 0..question_marks {
try!(dest.write_str("?"));
}
} else {
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.