rust/src/libterm/terminfo
Steven Fackler 3dcd215740 Switch to purely namespaced enums
This breaks code that referred to variant names in the same namespace as
their enum. Reexport the variants in the old location or alter code to
refer to the new locations:

```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
=>
```
pub use self::Foo::{A, B};

pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
or
```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = Foo::A;
}
```

[breaking-change]
2014-11-17 07:35:51 -08:00
..
parser Update code with new lint names 2014-10-28 08:54:21 -07:00
mod.rs Fix fallout from coercion removal 2014-11-17 22:41:33 +13:00
parm.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
searcher.rs Fix fallout from coercion removal 2014-11-17 22:41:33 +13:00