mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 15:42:52 +00:00
* symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
(multiple_symbols_cancel): Remove extra const. * symtab.h: Likewise.
This commit is contained in:
parent
bb2edc7f62
commit
7fc830e290
@ -1,3 +1,9 @@
|
||||
2008-04-19 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
|
||||
(multiple_symbols_cancel): Remove extra const.
|
||||
* symtab.h: Likewise.
|
||||
|
||||
2008-04-19 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* interps.c (top_level_interpreter): Rename static variable...
|
||||
|
@ -128,9 +128,9 @@ void _initialize_symtab (void);
|
||||
to multiple-choice menus when more than one symbol matches during
|
||||
a symbol lookup. */
|
||||
|
||||
const char const multiple_symbols_ask[] = "ask";
|
||||
const char const multiple_symbols_all[] = "all";
|
||||
const char const multiple_symbols_cancel[] = "cancel";
|
||||
const char multiple_symbols_ask[] = "ask";
|
||||
const char multiple_symbols_all[] = "all";
|
||||
const char multiple_symbols_cancel[] = "cancel";
|
||||
static const char *multiple_symbols_modes[] =
|
||||
{
|
||||
multiple_symbols_ask,
|
||||
|
@ -998,9 +998,9 @@ extern int asm_demangle;
|
||||
|
||||
/* symtab.c lookup functions */
|
||||
|
||||
extern const char const multiple_symbols_ask[];
|
||||
extern const char const multiple_symbols_all[];
|
||||
extern const char const multiple_symbols_cancel[];
|
||||
extern const char multiple_symbols_ask[];
|
||||
extern const char multiple_symbols_all[];
|
||||
extern const char multiple_symbols_cancel[];
|
||||
|
||||
const char *multiple_symbols_select_mode (void);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user