In textDisp.c textDRedisplayRange() is declared static but defined non-static.
The end result is that the function is static, at least HP-UX c89 issues a
warning.
diff -r -U3 nedit.isj12/source/textDisp.c nedit.isj13/source/textDisp.c
--- nedit.isj12/source/textDisp.c 2007-10-18 21:44:07.000000000 +0200
+++ nedit.isj13/source/textDisp.c 2007-10-18 16:32:14.000000000 +0200
@@ -666,7 +666,7 @@
** after pos, including blank lines which are not technically part of
** any range of characters.
*/
-void textDRedisplayRange(textDisp *textD, int start, int end)
+static void textDRedisplayRange(textDisp *textD, int start, int end)
{
int i, startLine, lastLine, startIndex, endIndex;
--
NEdit Develop mailing list - [email protected]
http://www.nedit.org/mailman/listinfo/develop