This commit is contained in:
Andi Jahja
2002-01-15 21:39:14 +00:00
parent 96ba03b237
commit 839e81defa
2 changed files with 8 additions and 3 deletions

View File

@@ -7,6 +7,9 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-01-17 15:32 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
* include/hbrddntx.h
2002-01-16 17:21 UTC-0300 Horacio Roldan <harbour_ar@yahoo.com.ar>
* source/rdd/dbfcdx1.c

View File

@@ -56,7 +56,7 @@
#define BUFFER_LENGTH 2048
PROCEDURE __TYPEFILE( cFile, lPrint )
FUNCTION __TYPEFILE( cFile, lPrint )
LOCAL nHandle, cBuffer
LOCAL oErr, xRecover, nRetries
LOCAL aSaveSet[ 2 ]
@@ -110,7 +110,7 @@ PROCEDURE __TYPEFILE( cFile, lPrint )
oErr:tries := ++nRetries
xRecover := Eval( ErrorBlock(), oErr )
IF ISLOGICAL( xRecover ) .and. !xRecover // user select "Default"
RETURN
RETURN NIL
ENDIF
ENDDO
@@ -125,9 +125,11 @@ PROCEDURE __TYPEFILE( cFile, lPrint )
// here we try to read a line at a time but I think we could just
// display the whole buffer since it said: "without any headings or formating"
cbuffer := SPACE( BUFFER_LENGTH )
? // start in a new line
DO WHILE fread( nHandle, @cbuffer, BUFFER_LENGTH ) > 0
?? cBuffer
cbuffer := SPACE( BUFFER_LENGTH )
ENDDO
FCLOSE( nHandle )
@@ -137,7 +139,7 @@ PROCEDURE __TYPEFILE( cFile, lPrint )
Set( _SET_PRINTER, aSaveSet[ 2 ] )
ENDIF
RETURN
RETURN NIL
/*----------------------------------------------------------------------------*/
/* Function aDvd : Divide string to tokens and put tokens into array */