diff --git a/src/ast_sel_cmp.cpp b/src/ast_sel_cmp.cpp index e6bb1b799..fe1357991 100644 --- a/src/ast_sel_cmp.cpp +++ b/src/ast_sel_cmp.cpp @@ -144,6 +144,7 @@ namespace Sass { if (length() < l) l = length(); for (size_t i = 0; i < l; i ++) { if (*at(i) < *rhs.at(i)) return true; + if (*at(i) != *rhs.at(i)) return false; } return false; }