diff options
author | Martin Tomasi <martin.tomasi@gmail.com> | 2015-08-29 09:21:02 +0200 |
---|---|---|
committer | Martin Tomasi <martin.tomasi@gmail.com> | 2015-09-02 15:46:04 +0200 |
commit | ccddc3c13e3fda204d1feb3062c1fb8ac2ed8beb (patch) | |
tree | bde0701168e6321778f7202cf533d4afb7f1d4b5 /components/script/lib.rs | |
parent | 5478c7c24bf6e175a9bca39bb11829c8325be2a9 (diff) | |
download | servo-ccddc3c13e3fda204d1feb3062c1fb8ac2ed8beb.tar.gz servo-ccddc3c13e3fda204d1feb3062c1fb8ac2ed8beb.zip |
Fixed serialize_list to no longer append an additional space at the end of the string
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index c24da41687e..325e9cba1e0 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -30,6 +30,7 @@ #![feature(str_utf16)] #![feature(unicode)] #![feature(vec_push_all)] +#![feature(slice_concat_ext)] #![deny(unsafe_code)] #![allow(non_snake_case)] |