lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Lynx-dev] ANN: lynx2.8.9dev.18


From: Gisle Vanem
Subject: Re: [Lynx-dev] ANN: lynx2.8.9dev.18
Date: Tue, 8 May 2018 12:52:16 +0200
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]