diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-02-21 09:23:50 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-02-21 09:23:50 +0000 |
commit | 0ad2beae7e55cb3918d76825e1644e07af51253e (patch) | |
tree | 8981841befb0041f40e8f7424d2212612f4438b1 /input.c | |
parent | 55e76edd3cc9bfa8aeac60b17d3344031097b1b6 (diff) | |
parent | f27e1d07fced949f6186ef57fcb8869e70c7d1c7 (diff) | |
download | rtmux-0ad2beae7e55cb3918d76825e1644e07af51253e.tar.gz rtmux-0ad2beae7e55cb3918d76825e1644e07af51253e.tar.bz2 rtmux-0ad2beae7e55cb3918d76825e1644e07af51253e.zip |
Merge branch 'obsd-master'
Conflicts:
Makefile
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1389,7 +1389,7 @@ input_csi_dispatch(struct input_ctx *ictx) break; case INPUT_CSI_IL: screen_write_insertline(sctx, input_get(ictx, 0, 1, 1), - ictx->cell.cell.bg); + ictx->cell.cell.bg); break; case INPUT_CSI_RCP: memcpy(&ictx->cell, &ictx->old_cell, sizeof ictx->cell); @@ -1779,6 +1779,9 @@ input_csi_dispatch_sgr(struct input_ctx *ictx) case 27: gc->attr &= ~GRID_ATTR_REVERSE; break; + case 28: + gc->attr &= ~GRID_ATTR_HIDDEN; + break; case 30: case 31: case 32: |