@@ -553,12 +553,7 @@ impl char {
553
553
/// `XID_Start` is a Unicode Derived Property specified in
554
554
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
555
555
/// 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" ) ]
562
557
pub fn is_xid_start ( self ) -> bool {
563
558
derived_property:: XID_Start ( self )
564
559
}
@@ -569,12 +564,7 @@ impl char {
569
564
/// `XID_Continue` is a Unicode Derived Property specified in
570
565
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
571
566
/// 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" ) ]
578
568
#[ inline]
579
569
pub fn is_xid_continue ( self ) -> bool {
580
570
derived_property:: XID_Continue ( self )
0 commit comments