about summary refs log tree commit diff
path: root/src/libstd_unicode
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-06-16 23:10:50 -0700
committerGitHub <noreply@github.com>2017-06-16 23:10:50 -0700
commit6062bf7aca1927bc0e64854c54b466fffa73f07a (patch)
tree28977e6f54b5ad5108879014133241135ebbe416 /src/libstd_unicode
parent881ea1ef0435c8c042ebf893346ade4534568738 (diff)
parentc6afde6c46d167c9c75389b887f1d2498aeef3e4 (diff)
downloadrust-6062bf7aca1927bc0e64854c54b466fffa73f07a.tar.gz
rust-6062bf7aca1927bc0e64854c54b466fffa73f07a.zip
Rollup merge of #42705 - est31:master, r=alexcrichton
Introduce tidy lint to check for inconsistent tracking issues

This PR
* Refactors the collect_lib_features function to work in a
      non-checking mode (no bad pointer needed, and list of
      lang features).
* Introduces checking whether unstable/stable tags for a
      given feature have inconsistent tracking issues, as in,
      multiple tracking issues per feature.
* Fixes such inconsistencies throughout the codebase.
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)