Commit 7acf8c87311bfe9c9a3109cfa200c5e49459b6fd
1 parent
d54236cb
Exists in
master
and in
3 other branches
Implementando conversao de strings de controle no plugin HLLAPI
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
kybd.c
... | ... | @@ -2628,11 +2628,11 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len |
2628 | 2628 | break; |
2629 | 2629 | |
2630 | 2630 | case '[': /* APL left bracket */ |
2631 | - key_ACharacter(hSession,(unsigned char) c, KT_STD, ia, &skipped); | |
2631 | + key_ACharacter(hSession,(unsigned char) c, KT_STD, ia, &skipped); | |
2632 | 2632 | break; |
2633 | 2633 | |
2634 | 2634 | case ']': /* APL right bracket */ |
2635 | - key_ACharacter(hSession,(unsigned char) c, KT_STD, ia, &skipped); | |
2635 | + key_ACharacter(hSession,(unsigned char) c, KT_STD, ia, &skipped); | |
2636 | 2636 | break; |
2637 | 2637 | |
2638 | 2638 | default: | ... | ... |