* contrib/hbformat/hbfmtcls.prg
! fixed casing of some function names.
* utils/hbmk2/hbmk2.prg
; all changes below apply to .xhp (xMate) to .hbp conversion:
! properly convert input filenames with spaces in them
! remove lib prefix from .a input filenames
% do not add empty -L options
* do not add include paths with %HB_INSTALL%\ in them
+ split non-portable, Borland-specific include path lists
concatenated with ';' into distinct -I options
% do not add empty include paths
* tests/testop.prg
* tests/testntx.prg
* tests/vmasort.prg
* tests/testlbl.prg
* tests/testidle.prg
* tests/videotst.prg
* tests/testmem.prg
* tests/testinit.prg
* tests/testhtml.prg
* tests/tstcolor.prg
* tests/vidtest.prg
* tests/tstuse.prg
* tests/vec1.prg
* tests/while.prg
* tests/tstdspac.prg
* tests/version.prg
* tests/testpre.prg
* tests/tstprag.prg
* formatted. mostly with hbformat.
58 lines
802 B
Plaintext
58 lines
802 B
Plaintext
//NOTEST
|
|
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#pragma TracePragmas=On
|
|
#pragma ExitSeverity=1
|
|
|
|
/* Unknown pragmas will be ignored silently */
|
|
#pragma BadPragma=off
|
|
#pragma /Y+
|
|
|
|
FUNCTION Main()
|
|
|
|
#pragma Shortcut=On
|
|
|
|
#pragma Shortcut= Off
|
|
|
|
#pragma Shortcut = On
|
|
|
|
#pragma Shortcut(OFF)
|
|
|
|
#pragma Shortcut( On)
|
|
|
|
#pragma Shortcut( OFF )
|
|
|
|
#pragma Shortcut( On )
|
|
|
|
#pragma Shortcut( OFF )
|
|
|
|
#pragma Shortcut( ON
|
|
|
|
/* or #pragma /Z+ */
|
|
|
|
IF .T. .AND. .F.
|
|
? "Always"
|
|
ENDIF
|
|
|
|
IF .F. .AND. .T.
|
|
? "Never"
|
|
ENDIF
|
|
|
|
#pragma /Z-
|
|
/* or #pragma Shortcut=Off */
|
|
|
|
#pragma Exitseverity=0
|
|
#pragma Exitseverity=1
|
|
#pragma Exitseverity(0)
|
|
#pragma Exitseverity( 1 )
|
|
#pragma Exitseverity( 0 )
|
|
#pragma Exitseverity= 2
|
|
#pragma Exitseverity= 1
|
|
|
|
/* Pragmas with bad values will cause an error */
|
|
#pragma WarningLevel=8
|
|
|
|
RETURN NIL
|