From: Oliver Schmidt
Date: Tue, 18 Jun 2013 17:06:46 +0000 (+0200)
Subject: Simply define CH_DEL exactly then when there none yet.
X-Git-Tag: V2.15~263
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=93bd9a8e51c22c2b91a25602586531dfb9fd683e;p=cc65
Simply define CH_DEL exactly then when there none yet.
---
diff --git a/libsrc/dbg/dbg.c b/libsrc/dbg/dbg.c
index ccc905122..c0c2da971 100644
--- a/libsrc/dbg/dbg.c
+++ b/libsrc/dbg/dbg.c
@@ -104,7 +104,7 @@ static char GetKeyUpdate (void);
#endif
/* Replacement key definitions */
-#if (defined(__APPLE2__) && !defined(__APPLE2ENH__)) || defined(__LYNX__) || defined(__SIM6502__) || defined (__SIM65C02__) || defined(__SUPERVISION__)
+#ifndef CH_DEL
# define CH_DEL ('H' - 'A' + 1) /* Ctrl+H */
#endif