Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248664
b: refs/heads/master
c: f8df13e
h: refs/heads/master
v: v3
  • Loading branch information
Petr Písař authored and Greg Kroah-Hartman committed Apr 19, 2011
1 parent f33c121 commit a6046c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d94206028854ba4c891004cecdbb2e220bf277bb
refs/heads/master: f8df13e0a901fe55631fed66562369b4dba40f8b
7 changes: 7 additions & 0 deletions trunk/drivers/tty/vt/vt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1193,6 +1193,13 @@ static void csi_J(struct vc_data *vc, int vpar)
vc->vc_x + 1);
}
break;
case 3: /* erase scroll-back buffer (and whole display) */
scr_memsetw(vc->vc_screenbuf, vc->vc_video_erase_char,
vc->vc_screenbuf_size >> 1);
set_origin(vc);
if (CON_IS_VISIBLE(vc))
update_screen(vc);
/* fall through */
case 2: /* erase whole display */
count = vc->vc_cols * vc->vc_rows;
start = (unsigned short *)vc->vc_origin;
Expand Down

0 comments on commit a6046c7

Please sign in to comment.