Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236120
b: refs/heads/master
c: 87be424
h: refs/heads/master
v: v3
  • Loading branch information
Christopher Brannon authored and Greg Kroah-Hartman committed Feb 23, 2011
1 parent 4de2c18 commit df15df6
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: 1af4791552e462b37d0174407dc3173917e35ea0
refs/heads/master: 87be424a9a4be41df26b25b3360969211cedd5d1
4 changes: 3 additions & 1 deletion trunk/drivers/staging/speakup/keyhelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ int handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
}
cur_item = letter_offsets[ch-'a'];
} else if (type == KT_CUR) {
if (ch == 0 && (cur_item + 1) <= MSG_FUNCNAMES_END)
if (ch == 0
&& (MSG_FUNCNAMES_START + cur_item + 1) <=
MSG_FUNCNAMES_END)
cur_item++;
else if (ch == 3 && cur_item > 0)
cur_item--;
Expand Down

0 comments on commit df15df6

Please sign in to comment.