Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 354001
b: refs/heads/master
c: ed52565
h: refs/heads/master
i:
  353999: 3e80cc4
v: v3
  • Loading branch information
Lijo Antony authored and Greg Kroah-Hartman committed Jan 17, 2013
1 parent e19c2b0 commit 98f290a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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: 5c75af1a451ec14a218c830a8246a1b34fc91e59
refs/heads/master: ed52565565e9ba9e081fd20c83f3166b78b4c2ac
7 changes: 5 additions & 2 deletions trunk/drivers/staging/speakup/keyhelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ static void say_key(int key)
synth_printf(" %s", spk_msg_get(MSG_STATES_START + i));
}
if ((key > 0) && (key <= num_key_names))
synth_printf(" %s\n", spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
synth_printf(" %s\n",
spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
}

static int help_init(void)
Expand Down Expand Up @@ -169,7 +170,9 @@ int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
cur_item--;
else
return -1;
} else if (type == KT_SPKUP && ch == SPEAKUP_HELP && !spk_special_handler) {
} else if (type == KT_SPKUP
&& ch == SPEAKUP_HELP
&& !spk_special_handler) {
spk_special_handler = spk_handle_help;
synth_printf("%s\n", spk_msg_get(MSG_HELP_INFO));
build_key_data(); /* rebuild each time in case new mapping */
Expand Down

0 comments on commit 98f290a

Please sign in to comment.