From d252dff8116c4ed810fee9c91a4d316e43d40dae Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Fri, 11 Jun 2010 00:37:44 -0700 Subject: [PATCH] [Sass] Use the proper constant to refer to :-moz-any. --- lib/sass/scss/rx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sass/scss/rx.rb b/lib/sass/scss/rx.rb index a14bdb49..fa8f0e1c 100644 --- a/lib/sass/scss/rx.rb +++ b/lib/sass/scss/rx.rb @@ -109,7 +109,7 @@ module Sass # Custom HEXCOLOR = /\#[0-9a-fA-F]+/ INTERP_START = /#\{/ - MOZ_ALL = quote(":-moz-any(", Regexp::IGNORECASE) + MOZ_ANY = quote(":-moz-any(", Regexp::IGNORECASE) STRING1_NOINTERP = /\"((?:[^\n\r\f\\"#]|#(?!\{)|\\#{NL}|#{ESCAPE})*)\"/ STRING2_NOINTERP = /\'((?:[^\n\r\f\\'#]|#(?!\{)|\\#{NL}|#{ESCAPE})*)\'/