Commit Graph

3818 Commits

Author SHA1 Message Date
Luiz Rafael Culik
9bd6d4fc8c *** empty log message *** 2001-02-25 09:29:27 +00:00
Luiz Rafael Culik
c47713cf33 See changelog 2001-02-25 06:00 GMT -3 2001-02-25 08:57:26 +00:00
Ron Pinkas
3ceb194fed 2001-02-24 19:45 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
     + Added CompileNestedBlocks() #ifdef __CLIPPER__, because Clipper's Macro Compiler can *not* compile nested blocks.

     /* Clipper macro compiler can't compile literal blocks which contain nested blocks. This is needed by #commands like:
        INDEX ON ... TO ...
        Now PP will pre-compile such nested blocks. This makes PP fully functional when compiled with Clipper too :-) */

   * harbour/source/rdd/dbfcdx1.c
     ! Moved few declarations above the HB_TRACE() lien, to fix compilation errors.
2001-02-25 03:59:52 +00:00
Alex Shashkov
d05b38d8d0 2001-02-23 18:10 UTC+0300 Alex Shashkov <shashkov@ostu.ru>
* harbour/source/rtl/console.c
     ! Fixed bug STDOUT(..,"",..) on Watcom C 11.0

   * harbour/source/pp/ppcore.c
   * harbour/source/pp/pragma.c
     ! Fixed extern declaration for Watcom C 11.0
2001-02-24 15:08:27 +00:00
Alex Shashkov
49903bf1d7 2001-02-24 12:45 UTC+0300 Alex Shashkov <shashkov@ostu.ru>
* harbour/source/vm/dynsym.c
     ! Fixed
   * harbour/include/hbrddcdx.h
     + Added support ORDSETFOCUS() and update keys
   * harbour/source/rdd/dbfcdx1.c
     + Added support ORDSETFOCUS(), update keys, keys any type
     - remove hb_cdxltoa()
   * harbour/source/rdd/dbfcdx1.h
     ! Fixed support for Watcom C 11.0
     + Added support keys any type
   * harbour/source/rdd/dbfcdx2.h
     + Added some new functions
     * Changed the declaration of some functions

   Not finished yet.
2001-02-24 10:01:20 +00:00
Ron Pinkas
2a991d0dff 2001-02-23 17:20 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/vm/hvm.c
     ! Added logic to clear items of extraneous parameters in hb_vmFrame().
2001-02-24 01:26:40 +00:00
Alexander S.Kresin
c295f6fa6c 2001-02-23 21:40 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-23 19:17:48 +00:00
Alexander S.Kresin
80e9ba992d 2001-02-23 21:40 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-23 18:44:00 +00:00
Alex Shashkov
b21688d42a 2001-02-23 19:35 UTC+0300 Alex Shashkov <shashkov@ostu.ru>
* harbour/source/rtl/filesys.c
   * harbour/source/vm/item.c
     ! Fixed support for Watcom C 11.0
2001-02-23 16:48:40 +00:00
Ron Pinkas
41405ddc55 2001-02-23 08:25 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
     + Added support for DO <>.prg

   * contrib/dot/rp_dot.ch
      + Added #command DO <>.prg (no support for WITH yet)
2001-02-23 16:32:35 +00:00
Alex Shashkov
09a9d4514e 2001-02-23 19:03 UTC+0300 Alex Shashkov <shashkov@ostu.ru>
* source/rtl/math.c
     ! Fixed support Watcom C 11.0.
2001-02-23 16:10:49 +00:00
Ron Pinkas
a73bcd3e07 2001-02-22 22:25 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
     + Started support for interpreting prg files.
   * contrib/dot/rp_dot.ch
     + Added #command for stealing END

   /* PP can alreay "Run" simple prgs :-). It actually support most Clipper commands.
      It does *not* support LOCAL/STATIC/PRIVATE/PUBLIC, but any refference to a variable will create it as PRIVATE.
      It does not (yet) support creation of FUNCTIONs/PROCEDUREs but will execute any built-in, or linked, prodecure/function.
      It does not (yet) support WHILE and FOR loops.

      It can execute code like this:

      //------------------------------//
      CLS

      Alert( "Testinf PP as Interpreter... " )

      USE test
      IF ! File( "test" + IndexExt() )
   	INDEX on FIELD->First TO First
      ELSE
   	SET INDEX TO First
      ENDIF

      GO TOP

      cName := FIELD->First + FIELD->Last

      IF cName == FIELD->First + FIELD->Last
  	? "Ok"
      ELSE
  	? "Err"
      ENDIF

      DO CASE
         CASE cName == First // Not exact!
           ? "Err"

         CASE cName = First // But still equal
           ? "Ok"

         OTHERWISE
           ? "Err"
      ENDCASE

      REPLACE First WITH "From PP"

      ? FIELD->First
      //------------------------------//

      To have PP execute a PRG use: PP filename -R
    */
2001-02-23 06:40:04 +00:00
Ron Pinkas
da7de8dffd 2001-02-22 17:10 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
     ! Fixed order of production in multi line result, where some of the resulting lines are re-processed
     + Added support for IF, ELSE, ELSEIF, ENDIF, DO CASE, CASE, OTHERWISE, ENDCASE
     ! Fixed cursor position in Dot prompt to simulate running program cursor position.

   * contrib/dot/rp_dot.ch
     ! Fixed literal coordinates to use MaxRow() and MaxCol()
     + Added #command CLS to only clean the work region.
     + Added #commands to "steal" handling of IF, ELSE, ELSEIF, ENDIF, DO CASE, CASE, OTHERWISE, ENDCASE
2001-02-23 01:17:19 +00:00
Alexander S.Kresin
c9422ce268 2001-02-22 15:45 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-22 12:53:30 +00:00
Ron Pinkas
f4be8f3f04 2001-02-22 01:10 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/pp/ppcore.c
     ! Fixed NextName() to skip over .AND., .NOT. and .OR.

   * config/w32/mingw32.cf
     + Added rules to use script files for long command lines, but commented out because @scripts did not work.
2001-02-22 09:20:18 +00:00
Alexander S.Kresin
c209960967 2001-02-22 10:25 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-22 07:27:49 +00:00
Ron Pinkas
8a0b62fe33 2001-02-21 01:45 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.prg
     * Changed all extensions to lower case (.prg, .pp$, .cch ).
     * Changed Chr(13) + Chr(10) to CRLF which is #defined as HB_OsNewLine() if __HARBOUR__ is defined.
     * Changed literal size of buffer 16384 to PP_BUFFER_SIZE which is #defined as 16384

     /* Could Linux users please report results... */
2001-02-21 09:50:16 +00:00
Ron Pinkas
ca7ac83f5f 2001-02-20 22:20 UTC-0800 Ron Pinkas <ron@profit-master.com>
* utils/hbpp//hbpp.c
      - Removed unused variables and function warnned by djgpp
2001-02-21 06:24:44 +00:00
Ron Pinkas
56466ab338 2001-02-20 23:10 UTC-0800 Ron Pinkas <ron@profit-master.com>
* make_gnu.bat
     ! Fixed maker to make -r
     * Added %HARBOURDIR% and removed trailing slash from HB_BIN_INSTALL, HB_LIB_INSTALL and HB_INC_INSTALL

   * contrib/dot/pp.prg
     * Minor corrections to stringifys

   * utils/hbtest/hbtest.prg
     * Commented out RddSetDefault( "DBFCDX" )
2001-02-21 06:04:15 +00:00
Alexander S.Kresin
54370404ee 2001-02-20 13:10 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-20 10:09:48 +00:00
Horacio Dario Roldan Kasimatis
23bf514762 2001-02-20 01:50 GMT-3 Horacio Roldan <horacioroldan@usa.net <mailto:horacioroldan@usa.net>>
* harbour/source/vm/asort.c
* Fixed bug in optimization test that prevented sorting some arrays.
2001-02-20 05:00:32 +00:00
Alexander S.Kresin
91a897ba7e 2001-02-19 11:15 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-19 08:17:38 +00:00
Alexander S.Kresin
36ff7f3734 2001-02-19 10:15 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-19 07:17:25 +00:00
Luiz Rafael Culik
597a9e8296 *** empty log message *** 2001-02-17 18:11:54 +00:00
Luiz Rafael Culik
25fdd3a96d See changelog 2001-02-17 16:00 GMT -3 2001-02-17 18:10:32 +00:00
Brian Hays
470825af55 2001-02-16 23:40 UTC-0800 Brian Hays <bhays@abacuslaw.com> 2001-02-17 07:26:49 +00:00
Alexander S.Kresin
cff90a3306 2001-02-16 11:20 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-16 08:27:07 +00:00
Brian Hays
ecf273fe9a 2001-02-15 11:10 UTC-0800 Brian Hays <bhays@abacuslaw.com> 2001-02-15 19:06:20 +00:00
Alexander S.Kresin
6bbf46b9c9 2001-02-15 13:15 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-15 10:19:03 +00:00
Ron Pinkas
e77234a86c 2001-02-14 23:10 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/pp/ppcore.c
     ! Fixed space removal within [] in strotrim() when not processing MP or RP.
2001-02-15 07:13:03 +00:00
Antonio Linares
c0cce72785 2001-02-14 12:45 GMT+1 2001-02-14 11:46:26 +00:00
Antonio Linares
85f036f8b2 locals are restored when returning from a function or proc 2001-02-14 11:44:58 +00:00
Alexander S.Kresin
40695491c9 2001-02-14 12:40 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-14 09:40:53 +00:00
Ron Pinkas
ba9b0806fd 2001-02-13 17:30 UTC-0800 Ron Pinkas <ron@profit-master.com>
* harbour/source/rtl/idle.c
     * Changed Sleep(0) to Sleep(20) so that Harbour will properly release CPU on Win32.
2001-02-14 01:43:43 +00:00
Alexander S.Kresin
dc683727a2 2001-02-13 15:50 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-13 12:50:36 +00:00
Antonio Linares
f274ddd6bd 2001-02-13 12:21 GMT+1 2001-02-13 11:22:54 +00:00
Antonio Linares
003a0b3d6d Trace support fixed 2001-02-13 11:21:18 +00:00
Ignacio Ortiz de Zuniga
9d457277b7 2001-02-13 11:30 GMT+1 2001-02-13 10:32:42 +00:00
Ignacio Ortiz de Zuniga
238c57c500 + minus sing support fixed. 2001-02-13 10:28:38 +00:00
Alexander S.Kresin
ef11c1ee89 2001-02-13 13:15 GMT+3 Alexander Kresin <alex@belacy.belgorod.su> 2001-02-13 10:19:25 +00:00
Antonio Linares
2f53bfc47b some minor fixes 2001-02-12 21:41:51 +00:00
Antonio Linares
1e378893a6 some minor fixes 2001-02-12 21:30:45 +00:00
Antonio Linares
f15b6b6b2e 2001-02-12 21:58 GMT+1 2001-02-12 21:00:53 +00:00
Antonio Linares
22fac970a7 some more options implemented 2001-02-12 20:58:53 +00:00
Antonio Linares
0749a062fe Methods EditSet(), Trace() implemented. 2001-02-12 20:56:11 +00:00
Antonio Linares
794da23d79 2001-02-12 13:32 GMT+1 2001-02-12 12:34:12 +00:00
Antonio Linares
00442db19a some options implemented 2001-02-12 12:31:15 +00:00
Antonio Linares
0ad32b1ddc Method Animate() implemented 2001-02-12 10:33:16 +00:00
Antonio Linares
918fb22c89 some minor fixes 2001-02-12 09:27:08 +00:00
Antonio Linares
10686dc8d1 some minor fixes 2001-02-12 09:04:25 +00:00