diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-01 18:14:28 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-01 18:14:28 +0200 |
commit | a215941b9f1854e08152a26b1bfea70ac148c409 (patch) | |
tree | 122c7afe1b6e94c6480fe4e9c00cebe66919b1c7 | |
parent | 7a20b5e8d45c57fd8b02c79ad53834ec6f3ab655 (diff) |
Sorted entries
-rw-r--r-- | FICS/variable.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/FICS/variable.c b/FICS/variable.c index 5b08fa8..7f20f0b 100644 --- a/FICS/variable.c +++ b/FICS/variable.c @@ -727,38 +727,38 @@ PRIVATE int set_formula(int p, char *var, char *val) } PUBLIC var_list variables[] = { - {"open", set_open}, - {"simopen", set_sopen}, - {"rated", set_rated}, - {"ropen", set_ropen}, + {"automail", set_automail}, + {"bell", set_bell}, + {"busy", set_busy}, {"cshout", set_cshout}, - {"shout", set_shout}, - {"kibitz", set_kibitz}, - {"kiblevel", set_kiblevel}, - {"tell", set_tell}, - {"notifiedby", set_notifiedby}, - {"pinform", set_pinform}, - {"i_login", set_pinform}, + {"flip", set_flip}, {"ginform", set_ginform}, + {"height", set_height}, + {"highlight", set_highlight}, {"i_game", set_ginform}, - {"automail", set_automail}, + {"i_login", set_pinform}, + {"inc", set_inc}, + {"jprivate", set_jprivate}, + {"kibitz", set_kibitz}, + {"kiblevel", set_kiblevel}, + {"language", set_language}, {"mailmess", set_mailmess}, - {"bell", set_bell}, + {"notifiedby", set_notifiedby}, + {"open", set_open}, + {"partner", set_partner}, {"pgn", set_pgn}, + {"pinform", set_pinform}, {"private", set_private}, - {"jprivate", set_jprivate}, - {"highlight", set_highlight}, - {"style", set_style}, - {"flip", set_flip}, - {"prompt", set_prompt}, - {"partner", set_partner}, {"promote", set_promote}, + {"prompt", set_prompt}, + {"rated", set_rated}, + {"ropen", set_ropen}, + {"shout", set_shout}, + {"simopen", set_sopen}, + {"style", set_style}, + {"tell", set_tell}, {"time", set_time}, - {"inc", set_inc}, - {"height", set_height}, {"width", set_width}, - {"language", set_language}, - {"busy", set_busy}, {"0", set_plan}, {"1", set_plan}, {"2", set_plan}, |