1
1

* setup.c (load_keys_from_section): Give terminal-specific

settings preference over settings from [terminal:general].
Этот коммит содержится в:
Pavel Roskin 2001-07-23 19:14:40 +00:00
родитель a10d12e669
Коммит 725f2ac2ec
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2001-07-23 Pavel Roskin <proski@gnu.org>
* setup.c (load_keys_from_section): Give terminal-specific
settings preference over settings from [terminal:general].
2001-07-22 Pavel Roskin <proski@gnu.org>
* setup.c (load_keys_from_section): Give ~/.mc/ini preference

Просмотреть файл

@ -736,10 +736,10 @@ void load_key_defs (void)
* Load keys from mc.lib before ~/.mc/ini, so that the user
* definitions override global settings.
*/
load_keys_from_section (getenv ("TERM"), libfile);
load_keys_from_section ("general", libfile);
load_keys_from_section (getenv ("TERM"), profile_name);
load_keys_from_section (getenv ("TERM"), libfile);
load_keys_from_section ("general", profile_name);
load_keys_from_section (getenv ("TERM"), profile_name);
/* We don't want a huge database loaded in core */
free_profile_name (libfile);