CH_RUBOUT. Now CH_DEL behaves the same on Atari and other platforms.
git-svn-id: svn://svn.cc65.org/cc65/trunk@2033
b7a2c559-68d2-44c3-8de9-
860c34a00d81
/* Character codes */
-#define CH_DEL 0xFE
+#define CH_DELCHR 0xFE /* delete char under the cursor */
#define CH_ESC 0x1B
#define CH_CURS_UP 28
#define CH_CURS_DOWN 29
#define CH_EOL 0x9B /* end-of-line marker */
#define CH_CLR 0x7D /* clear screen */
#define CH_BEL 0xFD /* bell */
-#define CH_RUBOUT 0x7E /* back space (rubout) */
+#define CH_DEL 0x7E /* back space (delete char to the left) */
+#define CH_RUBOUT 0x7E /* back space (old, deprecated) */
#define CH_DELLINE 0x9C /* delete line */
#define CH_INSLINE 0x9D /* insert line */