Skip to content

Commit 393d6ed

Browse files
committed
---
yaml --- r: 233430 b: refs/heads/beta c: 3263d41 h: refs/heads/master v: v3
1 parent 64cde4d commit 393d6ed

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 59dac3175fd7040362fd147932c5d3feaaddeba1
26+
refs/heads/beta: 3263d41bac17fe55093117b285e5addcbc5f41d5
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 370fe2786109360f7c35b8ba552b83b773dd71d6
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/librustc_unicode/char.rs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ impl char {
295295
/// assert_eq!(result, None);
296296
/// ```
297297
#[unstable(feature = "unicode",
298-
reason = "pending decision about Iterator/Writer/Reader")]
298+
reason = "pending decision about Iterator/Writer/Reader",
299+
issue = "27784")]
299300
#[inline]
300301
pub fn encode_utf8(self, dst: &mut [u8]) -> Option<usize> {
301302
C::encode_utf8(self, dst)
@@ -334,7 +335,8 @@ impl char {
334335
/// assert_eq!(result, None);
335336
/// ```
336337
#[unstable(feature = "unicode",
337-
reason = "pending decision about Iterator/Writer/Reader")]
338+
reason = "pending decision about Iterator/Writer/Reader",
339+
issue = "27784")]
338340
#[inline]
339341
pub fn encode_utf16(self, dst: &mut [u16]) -> Option<usize> {
340342
C::encode_utf16(self, dst)
@@ -359,7 +361,8 @@ impl char {
359361
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
360362
/// mostly similar to ID_Start but modified for closure under NFKx.
361363
#[unstable(feature = "unicode",
362-
reason = "mainly needed for compiler internals")]
364+
reason = "mainly needed for compiler internals",
365+
issue = "0")]
363366
#[inline]
364367
pub fn is_xid_start(self) -> bool { derived_property::XID_Start(self) }
365368

@@ -370,7 +373,8 @@ impl char {
370373
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
371374
/// mostly similar to 'ID_Continue' but modified for closure under NFKx.
372375
#[unstable(feature = "unicode",
373-
reason = "mainly needed for compiler internals")]
376+
reason = "mainly needed for compiler internals",
377+
issue = "0")]
374378
#[inline]
375379
pub fn is_xid_continue(self) -> bool { derived_property::XID_Continue(self) }
376380

branches/beta/src/librustc_unicode/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
2424
#![cfg_attr(stage0, feature(custom_attribute))]
2525
#![crate_name = "rustc_unicode"]
26-
#![unstable(feature = "unicode")]
26+
#![unstable(feature = "unicode", issue = "27783")]
2727
#![staged_api]
2828
#![crate_type = "rlib"]
2929
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

0 commit comments

Comments
 (0)