[Z88dk-commits] CVS: z88dk/src/z80asm hist.c,1.83,1.84

Bridge to the z88dk-commits mailing list
Post Reply
pauloscustodio

[Z88dk-commits] CVS: z88dk/src/z80asm hist.c,1.83,1.84

Post by pauloscustodio »

Update of /cvsroot/z88dk/z88dk/src/z80asm
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15701

Modified Files:
hist.c
Log Message:
CH_0023: Accept C-like escape sequences in character constants and strings
Accepts \a, \b, \e (0x1B), \f, \n, \r, \t, \v, \{any character}, \{octal}, \x{hexadecimal}, allows \0 within the string.
Existing code may have to be modified, e.g. defb '\' --> defb '\\'

Index: hist.c
===================================================================
RCS file: /cvsroot/z88dk/z88dk/src/z80asm/hist.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** hist.c 29 Mar 2014 01:46:14 -0000 1.83
--- hist.c 30 Mar 2014 10:42:08 -0000 1.84
***************
*** 25,28 ****
--- 25,33 ----
/*
* $Log$
+ * Revision 1.84 2014/03/30 10:42:08 pauloscustodio
+ * CH_0023: Accept C-like escape sequences in character constants and strings
+ * Accepts \a, \b, \e (0x1B), \f, \n, \r, \t, \v, \{any character}, \{octal}, \x{hexadecimal}, allows \0 within the string.
+ * Existing code may have to be modified, e.g. defb '\' --> defb '\\'
+ *
* Revision 1.83 2014/03/29 01:46:14 pauloscustodio
* version
***************
*** 1693,1696 ****
--- 1698,1710 ----

-------------------------------------------------------------------------------
+ 30.03.2014 [2.1.7] (pauloscustodio)
+ -------------------------------------------------------------------------------
+ CH_0023: Accept C-like escape sequences in character constants and strings
+ Accepts \a, \b, \e (0x1B), \f, \n, \r, \t, \v, \{any character}
+ \{octal}, \x{hexadecimal}, allows \0 within the string.
+ Existing code may have to be modified, e.g.
+ defb '\' --> defb '\\'
+
+ -------------------------------------------------------------------------------
FUTURE CHANGES - require change of the object file format
-------------------------------------------------------------------------------
***************
*** 1724,1728 ****
#include "hist.h"

! #define VERSION "2.1.6"
#define COPYRIGHT "InterLogic 1993-2009, Paulo Custodio 2011-2014"

--- 1738,1742 ----
#include "hist.h"

! #define VERSION "2.1.7a"
#define COPYRIGHT "InterLogic 1993-2009, Paulo Custodio 2011-2014"



------------------------------------------------------------------------------
Post Reply