about summary refs log tree commit diff
path: root/src/libstd_unicode
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-06-17 06:47:54 +0000
committerbors <bors@rust-lang.org>2017-06-17 06:47:54 +0000
commitff9f2d2ae94fd951229c33ae55076fce4f68fab0 (patch)
tree3e8b1dc8719c4068a4ffcd079807d92ac55d6f65 /src/libstd_unicode
parent08d920cd4d95cc3e3c6ee3dd1ad5c98a4c58639e (diff)
parent6062bf7aca1927bc0e64854c54b466fffa73f07a (diff)
downloadrust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.tar.gz
rust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.zip
Auto merge of #42712 - frewsxcv:rollup, r=frewsxcv
Rollup of 3 pull requests

- Successful merges: #42660, #42662, #42705
- Failed merges:
Diffstat (limited to 'src/libstd_unicode')
-rw-r--r--src/libstd_unicode/char.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd_unicode/char.rs b/src/libstd_unicode/char.rs
index 92e5369758b..eb36cbe3b1f 100644
--- a/src/libstd_unicode/char.rs
+++ b/src/libstd_unicode/char.rs
@@ -599,9 +599,9 @@ impl char {
     /// 'XID_Start' is a Unicode Derived Property specified in
     /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
     /// mostly similar to `ID_Start` but modified for closure under `NFKx`.
-    #[unstable(feature = "unicode",
+    #[unstable(feature = "rustc_private",
                reason = "mainly needed for compiler internals",
-               issue = "0")]
+               issue = "27812")]
     #[inline]
     pub fn is_xid_start(self) -> bool {
         derived_property::XID_Start(self)
@@ -613,9 +613,9 @@ impl char {
     /// 'XID_Continue' is a Unicode Derived Property specified in
     /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
     /// mostly similar to 'ID_Continue' but modified for closure under NFKx.
-    #[unstable(feature = "unicode",
+    #[unstable(feature = "rustc_private",
                reason = "mainly needed for compiler internals",
-               issue = "0")]
+               issue = "27812")]
     #[inline]
     pub fn is_xid_continue(self) -> bool {
         derived_property::XID_Continue(self)