diff options
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 6e44b295968..275051435bd 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -7,12 +7,11 @@ #![feature(globs, macro_rules, struct_variant, phase, unsafe_destructor)] -#![feature(phase)] +#![deny(unused_imports, unused_variable)] +#![allow(non_snake_case_functions)] #![doc="The script crate contains all matters DOM."] -#![allow(non_snake_case_functions)] - #[phase(plugin, link)] extern crate log; |