| ... | ... | @@ -300,12 +300,12 @@ fn drainEscaping(w: *Writer, data: []const []const u8, splat: usize) Io.Writer.E |
| 300 | 300 | const header = w.interface.buffered(); |
| 301 | 301 | if (findTerminalEscape(header)) |i| { |
| 302 | 302 | _ = i; |
| 303 | | @panic("TODO strip terminal escape sequence"); |
| 303 | // TODO strip terminal escape sequences here |
| 304 | 304 | } |
| 305 | 305 | for (data) |d| { |
| 306 | 306 | if (findTerminalEscape(d)) |i| { |
| 307 | 307 | _ = i; |
| 308 | | @panic("TODO strip terminal escape sequence"); |
| 308 | // TODO strip terminal escape sequences here |
| 309 | 309 | } |
| 310 | 310 | } |
| 311 | 311 | const n = io.vtable.fileWriteStreaming(io.userdata, w.file, header, data, splat) catch |err| { |