8000 Terminal colorization not properly ended · Issue #46 · gnzlbg/cargo-asm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Terminal colorization not properly ended #46
Open
@joshlf

Description

@joshlf

On this function:

pub fn copy(src: &[u8], dst: &mut [u8]) {
    assert!(src.len() == dst.len());
    for i in 0..src.len() {
        dst[i] = src[i];
    }
}

I get output that looks like this in Terminal.app on Mac. In particular, note that cargo asm didn't properly reset the terminal color after setting it to red on the last line.

screen shot 2018-08-20 at 5 50 57 pm

Metadata

Metadata

Assignees

No one assigned

    Labels

    P-HighbugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0