about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-12-12 13:19:33 +0000
committerbors <bors@rust-lang.org>2016-12-12 13:19:33 +0000
commitb4b1e5ece21fb497877350c3d6defa143c88076c (patch)
treeea9fb5fbf9239b9e3275f4a13fcfe11ea8bdd191 /src/libsyntax/parse
parent0eae43e4d00ca6697da59b84c7cdf1c8ea83ea00 (diff)
parent274777a1588660b11a278ef52366743d82eb63ab (diff)
downloadrust-b4b1e5ece21fb497877350c3d6defa143c88076c.tar.gz
rust-b4b1e5ece21fb497877350c3d6defa143c88076c.zip
Auto merge of #38049 - frewsxcv:libunicode, r=alexcrichton
Rename 'librustc_unicode' crate to 'libstd_unicode'.

Fixes https://github.com/rust-lang/rust/issues/26554.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/lexer/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs
index 681dec0ab56..818742e4492 100644
--- a/src/libsyntax/parse/lexer/mod.rs
+++ b/src/libsyntax/parse/lexer/mod.rs
@@ -16,7 +16,7 @@ use ext::tt::transcribe::tt_next_token;
 use parse::token;
 use str::char_at;
 use symbol::{Symbol, keywords};
-use rustc_unicode::property::Pattern_White_Space;
+use std_unicode::property::Pattern_White_Space;
 
 use std::borrow::Cow;
 use std::char;