From 50af685d96865c1dff1eabe2e85f452736af98e4 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Mon, 24 Jun 2019 19:15:03 -0400 Subject: [PATCH] fix hcode generation for new length fun --- GUI/host/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/host/util.cpp b/GUI/host/util.cpp index 66ae7cb..d3518ab 100644 --- a/GUI/host/util.cpp +++ b/GUI/host/util.cpp @@ -229,7 +229,7 @@ namespace if (hp.null_length != 0) HCode << hp.null_length << "<"; if (hp.type & NO_CONTEXT) HCode << "N"; - if (hp.text_fun || hp.filter_fun || hp.hook_fun) HCode << "X"; // no AGTH equivalent + if (hp.text_fun || hp.filter_fun || hp.hook_fun || hp.length_fun) HCode << "X"; // no AGTH equivalent if (hp.codepage != 0 && !(hp.type & USING_UNICODE)) HCode << hp.codepage << "#";