2003-04-04 11:20 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2003-04-04 07:18:24 +00:00
parent 36d96467cd
commit 468f30b9a0
3 changed files with 12 additions and 5 deletions

View File

@@ -9,6 +9,12 @@
*/
2003-04-04 11:20 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/pp/ppcore.c
* Handling of '*' comment now is more Clipper compatible
* include/hbver.h
* changed version information
2003-04-03 18:34 UTC+0200 Maurilio Longo <maurilio.longo@libero.it>
* source/common/hbgete.c
! fixed warning on OS/2 GCC

View File

@@ -59,14 +59,14 @@
#define HB_VER_LEX "Flex"
#endif
#define HB_VER_MAJOR 0 /* Major version number */
#define HB_VER_MINOR 41 /* Minor version number */
#define HB_VER_MINOR 42 /* Minor version number */
#define HB_VER_REVISION 0 /* Revision number */
/* TOFIX: Ideally these should be generated dynamically, until
then, they should be updated by the builder. [vszakats] */
#define HB_VER_LENTRY "2002-12-31 11:45 UTC-0500 David G. Holm <dholm@jsd-llc.com>"
#define HB_VER_CHLCVS "ChangeLog,v 1.4289 2002/12/31 16:47:43 dholm"
#define HB_VER_LENTRY "2003-04-04 11:20 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>"
#define HB_VER_CHLCVS "ChangeLog,v 1.4336 2003/04/03 16:36:07 mauriliolongo"
#define HB_VER_C_USR ""
#define HB_VER_L_USR ""
#define HB_VER_PRG_USR ""

View File

@@ -2961,7 +2961,7 @@ static void pp_rQuotes( char * expreal, char * sQuotes )
}
}
int hb_pp_RdStr( FILE * handl_i, char * buffer, int maxlen, BOOL lDropSpaces, char * sBuffer, int * lenBuffer, int * iBuffer )
int hb_pp_RdStr( FILE * handl_i, char * buffer, int maxlen, BOOL lContinue, char * sBuffer, int * lenBuffer, int * iBuffer )
{
#ifndef __WATCOMC__
extern BOOL hb_pp_bInline;
@@ -2969,6 +2969,7 @@ int hb_pp_RdStr( FILE * handl_i, char * buffer, int maxlen, BOOL lDropSpaces, ch
int readed = 0;
int State = 0;
char cha, cLast = '\0', symbLast = '\0';
BOOL lDropSpaces = lContinue;
HB_TRACE(HB_TR_DEBUG, ("hb_pp_RdStr(%p, %s, %d, %d, %s, %p, %p)", handl_i, buffer, maxlen, lDropSpaces, sBuffer, lenBuffer, iBuffer));
@@ -3096,7 +3097,7 @@ int hb_pp_RdStr( FILE * handl_i, char * buffer, int maxlen, BOOL lDropSpaces, ch
s_ParseState = STATE_COMMENT;
readed--;
}
else if( !State )
else if( !State && !lContinue )
{
maxlen = readed = 0;
}