@@ -553,12 +553,7 @@ impl char {
553553 /// `XID_Start` is a Unicode Derived Property specified in
554554 /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
555555 /// mostly similar to `ID_Start` but modified for closure under `NFKx`.
556- #[ cfg_attr( bootstrap,
557- unstable( feature = "rustc_private" ,
558- reason = "mainly needed for compiler internals" ,
559- issue = "27812" ) ) ]
560- #[ cfg_attr( not( bootstrap) ,
561- unstable( feature = "unicode_internals" , issue = "0" ) ) ]
556+ #[ unstable( feature = "unicode_internals" , issue = "0" ) ]
562557 pub fn is_xid_start ( self ) -> bool {
563558 derived_property:: XID_Start ( self )
564559 }
@@ -569,12 +564,7 @@ impl char {
569564 /// `XID_Continue` is a Unicode Derived Property specified in
570565 /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
571566 /// mostly similar to `ID_Continue` but modified for closure under NFKx.
572- #[ cfg_attr( bootstrap,
573- unstable( feature = "rustc_private" ,
574- reason = "mainly needed for compiler internals" ,
575- issue = "27812" ) ) ]
576- #[ cfg_attr( not( bootstrap) ,
577- unstable( feature = "unicode_internals" , issue = "0" ) ) ]
567+ #[ unstable( feature = "unicode_internals" , issue = "0" ) ]
578568 #[ inline]
579569 pub fn is_xid_continue ( self ) -> bool {
580570 derived_property:: XID_Continue ( self )
0 commit comments