1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-28 05:00:59 +01:00

37868: add 'static' to file local variables

This commit is contained in:
Jun-ichi Takimoto 2016-02-03 01:24:56 +09:00
parent 69acac38c9
commit a4020e10a3
16 changed files with 34 additions and 27 deletions

View file

@ -42,19 +42,19 @@ struct gsu_closure {
void *g;
};
const struct gsu_scalar scalar_private_gsu =
static const struct gsu_scalar scalar_private_gsu =
{ pps_getfn, pps_setfn, pps_unsetfn };
const struct gsu_integer integer_private_gsu =
static const struct gsu_integer integer_private_gsu =
{ ppi_getfn, ppi_setfn, ppi_unsetfn };
const struct gsu_float float_private_gsu =
static const struct gsu_float float_private_gsu =
{ ppf_getfn, ppf_setfn, ppf_unsetfn };
const struct gsu_array array_private_gsu =
static const struct gsu_array array_private_gsu =
{ ppa_getfn, ppa_setfn, ppa_unsetfn };
const struct gsu_hash hash_private_gsu =
static const struct gsu_hash hash_private_gsu =
{ pph_getfn, pph_setfn, pph_unsetfn };
/*