mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
* tuiIO.c (CTRL_CHAR): Redefine and use readline 4.3 definition.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2002-08-28 Stephane Carrez <stcarrez@nerim.fr>
|
||||||
|
|
||||||
|
* tuiIO.c (CTRL_CHAR): Redefine and use readline 4.3 definition.
|
||||||
|
|
||||||
2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
|
2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
|
||||||
|
|
||||||
Fix PR gdb/393:
|
Fix PR gdb/393:
|
||||||
|
@ -59,6 +59,10 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
|
/* Use definition from readline 4.3. */
|
||||||
|
#undef CTRL_CHAR
|
||||||
|
#define CTRL_CHAR(c) ((c) < control_character_threshold && (((c) & 0x80) == 0))
|
||||||
|
|
||||||
/* This file controls the IO interactions between gdb and curses.
|
/* This file controls the IO interactions between gdb and curses.
|
||||||
When the TUI is enabled, gdb has two modes a curses and a standard
|
When the TUI is enabled, gdb has two modes a curses and a standard
|
||||||
mode.
|
mode.
|
||||||
|
Reference in New Issue
Block a user