View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000507 | file | General | public | 2024-03-07 23:20 | 2024-04-14 00:51 |
Reporter | polluks | Assigned To | christos | ||
Priority | normal | Severity | feature | Reproducibility | N/A |
Status | new | Resolution | open | ||
Platform | MacBookAir14,2 | OS | macOS | OS Version | 14.3.1 |
Product Version | 5.45 | ||||
Summary | 0000507: Identify CSI as ESC | ||||
Description | A patch to look an 8 bit escape like a 7 bit escape. | ||||
Additional Information | --- file-5.45/src/ascmagic.c 2023-05-30 22:17:50.000000000 +0200 +++ ./ascmagic.c 2024-03-01 20:55:42.000000000 +0100 @@ -199,7 +199,7 @@ has_long_lines = ll; } - if (ubuf[i] == '\033') + if ((ubuf[i] & 127) == '\033') has_escapes = 1; if (ubuf[i] == '\b') has_backspace = 1; | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2024-03-07 23:20 | polluks | New Issue | |
2024-04-07 21:24 | christos | Assigned To | => christos |
2024-04-07 21:24 | christos | Status | new => assigned |
2024-04-07 21:25 | christos | Status | assigned => new |
2024-04-07 21:25 | christos | Note Added: 0004028 | |
2024-04-14 00:51 | polluks | Note Added: 0004035 |