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,6 +29,7 @@
29 29
30 #include "private.h" 30 #include "private.h"
31 #include <lib3270/trace.h> 31 #include <lib3270/trace.h>
  32 +#include <lib3270/actions.h>
32 33
33 /*---[ Globals ]--------------------------------------------------------------------------------------------------------------*/ 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,7 +2533,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len
2533 if (pasting) 2533 if (pasting)
2534 { 2534 {
2535 if (!skipped) 2535 if (!skipped)
2536 - lib3270_cursor_newline(hSession); 2536 + lib3270_newline(hSession);
2537 skipped = False; 2537 skipped = False;
2538 } 2538 }
2539 else 2539 else
@@ -2635,7 +2635,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len @@ -2635,7 +2635,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len
2635 break; 2635 break;
2636 2636
2637 case 'r': 2637 case 'r':
2638 - lib3270_cursor_newline(hSession); 2638 + lib3270_newline(hSession);
2639 skipped = False; 2639 skipped = False;
2640 state = BASE; 2640 state = BASE;
2641 break; 2641 break;