comparison src/proto/mbyte.pro @ 20637:6c5b11458f31 v8.2.0872

patch 8.2.0872: XIM code is mixed with multi-byte code Commit: https://github.com/vim/vim/commit/f15c8b6eb32fcfea88fd9ca42ef87bbee2c8fe2b Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 14:34:43 2020 +0200 patch 8.2.0872: XIM code is mixed with multi-byte code Problem: XIM code is mixed with multi-byte code. Solution: Move the XIM code to a separate file. (Yegappan Lakshmanan, closes #6177)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 14:45:05 +0200
parents d1e77015f60b
children cea8ae407452
comparison
equal deleted inserted replaced
20636:7226685d849a 20637:6c5b11458f31
72 char_u *enc_locale(void); 72 char_u *enc_locale(void);
73 int encname2codepage(char_u *name); 73 int encname2codepage(char_u *name);
74 void *my_iconv_open(char_u *to, char_u *from); 74 void *my_iconv_open(char_u *to, char_u *from);
75 int iconv_enabled(int verbose); 75 int iconv_enabled(int verbose);
76 void iconv_end(void); 76 void iconv_end(void);
77 void im_set_active(int active);
78 void xim_set_focus(int focus);
79 void im_set_position(int row, int col);
80 void xim_set_preedit(void);
81 int im_get_feedback_attr(int col);
82 void xim_init(void);
83 void im_shutdown(void);
84 int im_xim_isvalid_imactivate(void);
85 void xim_reset(void);
86 int xim_queue_key_press_event(GdkEventKey *event, int down);
87 int im_get_status(void);
88 int preedit_get_status(void);
89 int im_is_preediting(void);
90 void xim_set_status_area(void);
91 int xim_get_status_area_height(void);
92 void f_getimstatus(typval_T *argvars, typval_T *rettv); 77 void f_getimstatus(typval_T *argvars, typval_T *rettv);
93 int convert_setup(vimconv_T *vcp, char_u *from, char_u *to); 78 int convert_setup(vimconv_T *vcp, char_u *from, char_u *to);
94 int convert_setup_ext(vimconv_T *vcp, char_u *from, int from_unicode_is_utf8, char_u *to, int to_unicode_is_utf8); 79 int convert_setup_ext(vimconv_T *vcp, char_u *from, int from_unicode_is_utf8, char_u *to, int to_unicode_is_utf8);
95 int convert_input(char_u *ptr, int len, int maxlen); 80 int convert_input(char_u *ptr, int len, int maxlen);
96 int convert_input_safe(char_u *ptr, int len, int maxlen, char_u **restp, int *restlenp); 81 int convert_input_safe(char_u *ptr, int len, int maxlen, char_u **restp, int *restlenp);