summaryrefslogtreecommitdiffstats
path: root/misc/pinfo/fix_f9_f10_binds.diff
blob: 130c2e399c2bbd81c666d222c06c1b0779a4faf2 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/src/parse_config.c b/src/parse_config.c
index 6345e7d..84abb1d 100644
--- a/src/parse_config.c
+++ b/src/parse_config.c
@@ -877,9 +877,9 @@ parse_line(char *line)
 					*key = KEY_F(7);
 				else if (!(strncmp(temp + 4, "F(8)", 4)))
 					*key = KEY_F(8);
-				else if (!(strncmp(temp + 4, "(F9)", 4)))
+				else if (!(strncmp(temp + 4, "F(9)", 4)))
 					*key = KEY_F(9);
-				else if (!(strncmp(temp + 4, "(F10)", 5)))
+				else if (!(strncmp(temp + 4, "F(10)", 5)))
 					*key = KEY_F(10);
 				else if (!(strncmp(temp + 4, "F(11)", 5)))
 					*key = KEY_F(11);