diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6fc577d09f..56195e6b4c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-08-24 14:30 UTC+0200 Tomaz Zupan + * utils/hbdoc/genhtm.prg + * removed trailing EOL from category name, because category is also used + as file name. + 2003-08-23 13:20 UTC+0200 Tomaz Zupan * utils/hbdoc/ffile1.prg ! fixed end of line handling now it works on platforma other than windows diff --git a/harbour/utils/hbdoc/genhtm.prg b/harbour/utils/hbdoc/genhtm.prg index f678909076..fe82f09b75 100644 --- a/harbour/utils/hbdoc/genhtm.prg +++ b/harbour/utils/hbdoc/genhtm.prg @@ -446,7 +446,8 @@ FUNCTION ProcessWww() cBuffer := ReadLN( @lEof ) nLineCnt ++ // get the category - cCategory := ALLTRIM( SUBSTR( cBuffer, nCommentLen ) ) + cCategory := ALLTRIM( SUBSTR( cBuffer, nCommentLen ) ) + cCategory := strtran( cCategory, hb_OSNewLine(), '' ) // 3) One line description