From 29817c0ed5e257bfd2dcca1364910e849b0f5c41 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Mon, 24 Dec 2018 08:53:26 -0200 Subject: [PATCH] Fixing action name. --- src/lib3270/actions.c | 1 + src/lib3270/kybd.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib3270/actions.c b/src/lib3270/actions.c index 85ab8bf..cc69f2a 100644 --- a/src/lib3270/actions.c +++ b/src/lib3270/actions.c @@ -29,6 +29,7 @@ #include "private.h" #include +#include /*---[ Globals ]--------------------------------------------------------------------------------------------------------------*/ diff --git a/src/lib3270/kybd.c b/src/lib3270/kybd.c index b441619..6e0dfd6 100644 --- a/src/lib3270/kybd.c +++ b/src/lib3270/kybd.c @@ -2533,7 +2533,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len if (pasting) { if (!skipped) - lib3270_cursor_newline(hSession); + lib3270_newline(hSession); skipped = False; } else @@ -2635,7 +2635,7 @@ LIB3270_EXPORT int lib3270_emulate_input(H3270 *hSession, const char *s, int len break; case 'r': - lib3270_cursor_newline(hSession); + lib3270_newline(hSession); skipped = False; state = BASE; break; -- libgit2 0.21.2