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:
parent
0f59c96ffc
commit
17aae57035
2 changed files with 25 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue