2004-03-19 11:40 UTC+0100 Ryszard Glab <rglab@imid.med.pl>

* utils/hbmake/hbmake.prg
      *fixed #define datediff(<x>,<y>) into datediff(x,y)
      (Clipper compatibility)    (thanks to Jacek Kubica)
This commit is contained in:
Ryszard Glab
2004-03-20 10:30:02 +00:00
parent 5881f339eb
commit 4c9e7f21dd
2 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2004-03-19 11:40 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
* utils/hbmake/hbmake.prg
*fixed #define datediff(<x>,<y>) into datediff(x,y)
(Clipper compatibility) (thanks to Jacek Kubica)
2004-03-19 08:20 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
* source/debug/debugger.prg
* fixed refreshing of watchpoints

View File

@@ -65,7 +65,7 @@
#xtranslate timetosec(<x>) => ((val(substr(<x>,1,2))*3600)+(val(substr(<x>,4,2))*60)+(val(substr(<x>,7,2))))
#ifdef __HARBOUR__
#define datediff(<x>,<y>) (<x>-<y>)
#define datediff(x,y) (x-y)
#else
#translate datediff(<x>,<y>) => (<x>-<y>)
#endif