Skip to content

Commit 572449b

Browse files
committed
updated for version 7.4.043
Problem: VMS can't handle long function names. Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik)
1 parent a3131d5 commit 572449b

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ vim_main2(int argc UNUSED, char **argv UNUSED)
812812
starttermcap(); /* start termcap if not done by wait_return() */
813813
TIME_MSG("start termcap");
814814
#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
815-
may_req_ambiguous_character_width();
815+
may_req_ambiguous_char_width();
816816
#endif
817817

818818
#ifdef FEAT_MOUSE

src/proto/term.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void settmode __ARGS((int tmode));
3535
void starttermcap __ARGS((void));
3636
void stoptermcap __ARGS((void));
3737
void may_req_termresponse __ARGS((void));
38-
void may_req_ambiguous_character_width __ARGS((void));
38+
void may_req_ambiguous_char_width __ARGS((void));
3939
int swapping_screen __ARGS((void));
4040
void setmouse __ARGS((void));
4141
int mouse_has __ARGS((int c));

src/term.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3356,7 +3356,7 @@ may_req_termresponse()
33563356
* it must be called immediately after entering termcap mode.
33573357
*/
33583358
void
3359-
may_req_ambiguous_character_width()
3359+
may_req_ambiguous_char_width()
33603360
{
33613361
if (u7_status == U7_GET
33623362
&& cur_tmode == TMODE_RAW

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
43,
741743
/**/
742744
42,
743745
/**/

0 commit comments

Comments
 (0)