Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54898
b: refs/heads/master
c: 042f10e
h: refs/heads/master
v: v3
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed May 8, 2007
1 parent 88a13a6 commit f50a386
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d1e2306681ad3cbbe63a2bfcc37ac22a21b0f0eb
refs/heads/master: 042f10ec6533e53181284c96d22ae051e49ac707
4 changes: 3 additions & 1 deletion trunk/drivers/char/vt.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ static void blank_screen_t(unsigned long dummy);
static void set_palette(struct vc_data *vc);

static int printable; /* Is console ready for printing? */
static int default_utf8;
module_param(default_utf8, int, S_IRUGO | S_IWUSR);

/*
* ignore_poke: don't unblank the screen when things are typed. This is
Expand Down Expand Up @@ -1517,7 +1519,7 @@ static void reset_terminal(struct vc_data *vc, int do_clear)
vc->vc_charset = 0;
vc->vc_need_wrap = 0;
vc->vc_report_mouse = 0;
vc->vc_utf = 0;
vc->vc_utf = default_utf8;
vc->vc_utf_count = 0;

vc->vc_disp_ctrl = 0;
Expand Down

0 comments on commit f50a386

Please sign in to comment.