mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-22 13:42:55 +08:00
Fix PR gdb/787
* tuiWin.c (ACS_LRCORNER, ACS_LLCORNER, ACS_ULCORNER, ACS_URCORNER, ACS_HLINE, ACS_VLINE): Define if they don't exist.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2002-10-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
Fix PR gdb/787
|
||||
* tuiWin.c (ACS_LRCORNER, ACS_LLCORNER, ACS_ULCORNER, ACS_URCORNER,
|
||||
ACS_HLINE, ACS_VLINE): Define if they don't exist.
|
||||
|
||||
2002-10-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
Fix PR gdb/478
|
||||
|
@ -96,6 +96,25 @@ static void _parseScrollingArgs (char *, TuiWinInfoPtr *, int *);
|
||||
** PUBLIC FUNCTIONS
|
||||
***************************************/
|
||||
|
||||
#ifndef ACS_LRCORNER
|
||||
# define ACS_LRCORNER '+'
|
||||
#endif
|
||||
#ifndef ACS_LLCORNER
|
||||
# define ACS_LLCORNER '+'
|
||||
#endif
|
||||
#ifndef ACS_ULCORNER
|
||||
# define ACS_ULCORNER '+'
|
||||
#endif
|
||||
#ifndef ACS_URCORNER
|
||||
# define ACS_URCORNER '+'
|
||||
#endif
|
||||
#ifndef ACS_HLINE
|
||||
# define ACS_HLINE '-'
|
||||
#endif
|
||||
#ifndef ACS_VLINE
|
||||
# define ACS_VLINE '|'
|
||||
#endif
|
||||
|
||||
/* Possible values for tui-border-kind variable. */
|
||||
static const char *tui_border_kind_enums[] = {
|
||||
"space",
|
||||
|
Reference in New Issue
Block a user