We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1417f1 commit bc55151Copy full SHA for bc55151
src/fn_miscs.cpp
@@ -63,7 +63,7 @@ namespace Sass {
63
64
std::string name = Util::normalize_underscores(unquote(ss->value()));
65
66
- if(d_env.has_global(name+"[f]")) {
+ if(d_env.has(name+"[f]")) {
67
return SASS_MEMORY_NEW(Boolean, pstate, true);
68
}
69
else {
@@ -76,7 +76,7 @@ namespace Sass {
76
{
77
std::string s = Util::normalize_underscores(unquote(ARG("$name", String_Constant)->value()));
78
79
- if(d_env.has_global(s+"[m]")) {
+ if(d_env.has(s+"[m]")) {
80
81
82
@@ -247,4 +247,4 @@ namespace Sass {
247
248
249
250
-}
+}
0 commit comments