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