mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
butttonTrans need not be extern
* lwlib/lwlib-Xaw.c (buttonTrans) [USE_CAIRO || HAVE_XFT]: Now static. This pacifies gcc -Wmissing-variable-declarations.
This commit is contained in:
parent
8ddf2d2925
commit
59eb80a03a
1 changed files with 1 additions and 1 deletions
|
|
@ -487,7 +487,7 @@ static XtActionsRec button_actions[] =
|
||||||
{ "my_reset", command_reset },
|
{ "my_reset", command_reset },
|
||||||
{ "my_press", command_press },
|
{ "my_press", command_press },
|
||||||
};
|
};
|
||||||
char buttonTrans[] =
|
static char buttonTrans[] =
|
||||||
"<Leave>: reset() my_reset()\n"
|
"<Leave>: reset() my_reset()\n"
|
||||||
"<Btn1Down>: set() my_press()\n"
|
"<Btn1Down>: set() my_press()\n"
|
||||||
"<Btn1Up>: my_reset() notify() unset()\n";
|
"<Btn1Up>: my_reset() notify() unset()\n";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue