I'm not attaching this, since it is one character change (faster to
change by hand than use patch).  This should be assigment, not
comparison (line 961 in format.c):

diff --git a/src/format.c b/src/format.c
index 09e3a1f..9e9f8b9 100644
--- a/src/format.c
+++ b/src/format.c
@@ -958,7 +958,7 @@ eb_bool breakLine(const char *line, int len, int *newlen)
        if (lspace < 2)
                lspace = 2;     /* should never happen */
        if (!len + pre_cr)
-               lspace == 3;
+               lspace = 3;
        bl_start = bl_cursor = replaceLine;
        bl_end = replaceLine + REPLACELINELEN - 8;
        bl_overflow = eb_false;
-- 
Paul Onyschuk
_______________________________________________
Edbrowse-dev mailing list
[email protected]
http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev

Reply via email to