Another problem that has surfaced yet again [1]
(compiling the djgpp version):
LYForms.c: In function 'form_getstr':
LYForms.c:424:38: error: 'FieldEditor {aka struct <anonymous>}' has no member
named 'efWide'; did you mean 'efWidth'?
if (!(edit->efBufInUse >= edit->efWide &&
^~~~~~
efWidth
--- a/src/LYForms.c 2015-12-15 01:32:45
+++ b/src/LYForms.c 2018-05-08 10:45:10
@@ -421,10 +421,10 @@
LastTFPos < (int) edit->efBufInUse) {
#if defined(TEXTFIELDS_MAY_NEED_ACTIVATION) && defined(INACTIVE_INPUT_STYLE_VH)
if (redraw_only) {
- if (!(edit->efBufInUse >= edit->efWide &&
- LastTFPos >= edit->efWide - edit->efPanMargin)) {
+ if (!(edit->efBufInUse >= edit->efWidth &&
+ LastTFPos >= edit->efWidth - edit->efPanMargin)) {
edit->efEditAt = LastTFPos;
- if (edit->efBufInUse >= edit->efWide)
+ if (edit->efBufInUse >= edit->efWidth)
textinput_redrawn = FALSE;
}
} else
[1] http://lists.nongnu.org/archive/html/lynx-dev/2015-01/msg00015.html
--
--gv
_______________________________________________
Lynx-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/lynx-dev