[Z88dk-commits] CVS: z88dk/libsrc/stdio/ansi f_ansi.asm,1.10,1.11

Bridge to the z88dk-commits mailing list
Post Reply
pauloscustodio

[Z88dk-commits] CVS: z88dk/libsrc/stdio/ansi f_ansi.asm,1.10,1.11

Post by pauloscustodio »

Update of /cvsroot/z88dk/z88dk/libsrc/stdio/ansi
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15972

Modified Files:
f_ansi.asm
Log Message:
z80asm now accept C-like escape sequences in character constants and strings.
Replaced defb '\' --> defb '\\'

Index: f_ansi.asm
===================================================================
RCS file: /cvsroot/z88dk/z88dk/libsrc/stdio/ansi/f_ansi.asm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** f_ansi.asm 2 Apr 2008 19:44:27 -0000 1.10
--- f_ansi.asm 30 Mar 2014 10:46:03 -0000 1.11
***************
*** 371,375 ****
cp '"'
jr z, fgp_isquote
! cp '\'
jp nz, fgp_semi_or_cmd ; jump to code shared with f_in_param
.fgp_isquote
--- 371,375 ----
cp '"'
jr z, fgp_isquote
! cp '\\'
jp nz, fgp_semi_or_cmd ; jump to code shared with f_in_param
.fgp_isquote


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