Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
楚学文
node-sass
Commits
25815f6b
Commit
25815f6b
authored
Feb 29, 2012
by
Aaron Leung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whoops, shouldn't have been unquoting strings stored in variables.
parent
2ee9fce3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
node.cpp
node.cpp
+2
-2
test.scss
test.scss
+1
-0
No files found.
node.cpp
View file @
25815f6b
...
@@ -84,8 +84,8 @@ namespace Sass {
...
@@ -84,8 +84,8 @@ namespace Sass {
break
;
break
;
case
values
:
case
values
:
for
(
int
i
=
0
;
i
<
children
.
size
();
++
i
)
{
for
(
int
i
=
0
;
i
<
children
.
size
();
++
i
)
{
buf
<<
" "
;
buf
<<
" "
<<
string
(
children
[
i
].
token
)
;
children
[
i
].
token
.
stream_unquoted
(
buf
);
//
children[i].token.stream_unquoted(buf);
}
}
break
;
break
;
case
rule
:
case
rule
:
...
...
test.scss
View file @
25815f6b
...
@@ -12,6 +12,7 @@ div {
...
@@ -12,6 +12,7 @@ div {
a
{
a
{
text-decoration
:
none
;
text-decoration
:
none
;
color
:
green
;
color
:
green
;
content
:
"▲"
;
border
:
1px
$blah
red
;
border
:
1px
$blah
red
;
}
}
/* yet another comment that should be preserved */
/* yet another comment that should be preserved */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment