Commit 29817c0ed5e257bfd2dcca1364910e849b0f5c41

Authored by Perry Werneck
1 parent 3960b5bf

Fixing action name.

Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
src/lib3270/actions.c
... ... @@ -29,6 +29,7 @@
29 29  
30 30 #include "private.h"
31 31 #include <lib3270/trace.h>
  32 +#include <lib3270/actions.h>
32 33  
33 34 /*---[ Globals ]--------------------------------------------------------------------------------------------------------------*/
34 35  
... ...
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;
... ...