(delete_chars): Likewise.
+2005-06-08 Mark Mitchell <mark@codesourcery.com>
+
+ Revert:
+ 2005-03-28 Mark Mitchell <mark@codesourcery.com>
+ * readline/display.c (insert_some_chars): Likewise.
+ (delete_chars): Likewise.
+
2005-06-08 Mark Mitchell <mark@codesourcery.com>
* readline/input.c (rL_getc): Use getch, not getche.
char *string;
int count, col;
{
-#if defined(__MSDOS__) || defined(__MINGW32__)
+#ifdef __MSDOS__
_rl_output_some_chars (string, count);
-#else /* !__MSDOS__ && !__MINGW32__ */
+#else /* !__MSDOS__ */
/* DEBUGGING */
if (MB_CUR_MAX == 1 || rl_byte_oriented)
if (count != col)
if (count > _rl_screenwidth) /* XXX */
return;
-#if !defined(__MSDOS__) && !defined(__MINGW32__)
+#ifndef __MSDOS__
if (_rl_term_DC && *_rl_term_DC)
{
char *buffer;
while (count--)
tputs (_rl_term_dc, 1, _rl_output_character_function);
}
-#endif /* !__MSDOS__ && !__MINGW32__ */
+#endif /* !__MSDOS__ */
}
void