]> git.sur5r.net Git - cc65/commitdiff
Avoid macro redefinition of CH_DEL for apple2enh.
authorOliver Schmidt <ol.sc@web.de>
Mon, 17 Jun 2013 19:41:25 +0000 (21:41 +0200)
committerOliver Schmidt <ol.sc@web.de>
Mon, 17 Jun 2013 19:41:25 +0000 (21:41 +0200)
I'm wondering why MS VC++ didn't complain about this...

libsrc/dbg/dbg.c

index 34c686e09a98235211deebf0891107362c6778d2..ccc90512214128afe3b68212ab6a1d50d79e3167 100644 (file)
@@ -104,7 +104,7 @@ static char GetKeyUpdate (void);
 #endif
 
 /* Replacement key definitions */
-#if defined(__APPLE2__) || defined(__LYNX__) || defined(__SIM6502__) || defined (__SIM65C02__) || defined(__SUPERVISION__)
+#if (defined(__APPLE2__) && !defined(__APPLE2ENH__)) || defined(__LYNX__) || defined(__SIM6502__) || defined (__SIM65C02__) || defined(__SUPERVISION__)
 #  define CH_DEL        ('H' - 'A' + 1)         /* Ctrl+H */
 #endif