Commit 29817c0ed5e257bfd2dcca1364910e849b0f5c41
1 parent
3960b5bf
Exists in
master
and in
3 other branches
Fixing action name.
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
src/lib3270/actions.c
src/lib3270/kybd.c
... | ... | @@ -2533,7 +2533,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len |
2533 | 2533 | if (pasting) |
2534 | 2534 | { |
2535 | 2535 | if (!skipped) |
2536 | - lib3270_cursor_newline(hSession); | |
2536 | + lib3270_newline(hSession); | |
2537 | 2537 | skipped = False; |
2538 | 2538 | } |
2539 | 2539 | else |
... | ... | @@ -2635,7 +2635,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len |
2635 | 2635 | break; |
2636 | 2636 | |
2637 | 2637 | case 'r': |
2638 | - lib3270_cursor_newline(hSession); | |
2638 | + lib3270_newline(hSession); | |
2639 | 2639 | skipped = False; |
2640 | 2640 | state = BASE; |
2641 | 2641 | break; | ... | ... |