diff options
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/c_str.rs | 6 | ||||
| -rw-r--r-- | src/libstd/condition.rs | 3 | ||||
| -rw-r--r-- | src/libstd/rt/io/mod.rs | 8 | ||||
| -rw-r--r-- | src/libstd/str.rs | 2 |
4 files changed, 9 insertions, 10 deletions
diff --git a/src/libstd/c_str.rs b/src/libstd/c_str.rs index 8e7129578ee..6f12e219c3c 100644 --- a/src/libstd/c_str.rs +++ b/src/libstd/c_str.rs @@ -28,10 +28,10 @@ pub enum NullByteResolution { } condition! { - // this should be &[u8] but there's a lifetime issue + // This should be &[u8] but there's a lifetime issue (#5370). // NOTE: this super::NullByteResolution should be NullByteResolution - // Change this next time the snapshot it updated. - null_byte: (~[u8]) -> super::NullByteResolution; + // Change this next time the snapshot is updated. + pub null_byte: (~[u8]) -> super::NullByteResolution; } /// The representation of a C String. diff --git a/src/libstd/condition.rs b/src/libstd/condition.rs index 4d8857c9d1b..9cd2ad79d18 100644 --- a/src/libstd/condition.rs +++ b/src/libstd/condition.rs @@ -193,7 +193,8 @@ mod test { // Issue #6009 mod m { condition! { - sadness: int -> int; + // #6009, #8215: should this truly need a `pub` for access from n? + pub sadness: int -> int; } mod n { diff --git a/src/libstd/rt/io/mod.rs b/src/libstd/rt/io/mod.rs index 75af7ff8444..3b979cc2266 100644 --- a/src/libstd/rt/io/mod.rs +++ b/src/libstd/rt/io/mod.rs @@ -384,19 +384,17 @@ impl ToStr for IoErrorKind { // XXX: Can't put doc comments on macros // Raised by `I/O` operations on error. condition! { - // FIXME (#6009): uncomment `pub` after expansion support lands. // NOTE: this super::IoError should be IoError - // Change this next time the snapshot it updated. - /*pub*/ io_error: super::IoError -> (); + // Change this next time the snapshot is updated. + pub io_error: super::IoError -> (); } // XXX: Can't put doc comments on macros // Raised by `read` on error condition! { - // FIXME (#6009): uncomment `pub` after expansion support lands. // NOTE: this super::IoError should be IoError // Change this next time the snapshot it updated. - /*pub*/ read_error: super::IoError -> (); + pub read_error: super::IoError -> (); } pub trait Reader { diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 6a5ec9aa6d6..87effda2540 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -43,7 +43,7 @@ Section: Conditions */ condition! { - not_utf8: (~str) -> ~str; + pub not_utf8: (~str) -> ~str; } /* |
