1
0
forked from aniani/vim

patch 9.0.1313: some settings use the current codepage instead of 'encoding'

Problem:    Some settings use the current codepage instead of 'encoding'.
Solution:   Adjust how options are initialized. (Ken Takata, closes #11992)
This commit is contained in:
K.Takata
2023-02-15 19:13:43 +00:00
committed by Bram Moolenaar
parent bc3dc298b3
commit ce3189d56e
7 changed files with 70 additions and 17 deletions

View File

@@ -26,6 +26,7 @@ void vim_beep(unsigned val);
void init_homedir(void);
void free_homedir(void);
void free_users(void);
void init_vimdir(void);
char_u *expand_env_save(char_u *src);
char_u *expand_env_save_opt(char_u *src, int one);
void expand_env(char_u *src, char_u *dst, int dstlen);

View File

@@ -1,4 +1,5 @@
/* os_win32.c */
void mch_get_exe_name(void);
HINSTANCE vimLoadLib(const char *name);
int mch_is_gui_executable(void);
HINSTANCE find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname);