File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -1854,18 +1854,15 @@ fill_input_buf(int exit_on_error UNUSED)
1854
1854
len = 0 ; /* to avoid gcc warning */
1855
1855
for (try = 0 ; try < 100 ; ++ try )
1856
1856
{
1857
- # ifdef VMS
1858
- len = vms_read (
1859
- # else
1860
- len = read (read_cmd_fd ,
1861
- # endif
1862
- (char * )inbuf + inbufcount , (size_t )((INBUFLEN - inbufcount )
1857
+ size_t readlen = (size_t )((INBUFLEN - inbufcount )
1863
1858
# ifdef FEAT_MBYTE
1864
- / input_conv .vc_factor
1859
+ / input_conv .vc_factor
1865
1860
# endif
1866
- ));
1867
- # if 0
1868
- ) /* avoid syntax highlight error */
1861
+ );
1862
+ # ifdef VMS
1863
+ len = vms_read (read_cmd_fd , (char * )inbuf + inbufcount , readlen );
1864
+ # else
1865
+ len = read (read_cmd_fd , (char * )inbuf + inbufcount , readlen );
1869
1866
# endif
1870
1867
1871
1868
if (len > 0 || got_int )
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761
761
762
762
static int included_patches [] =
763
763
{ /* Add new patch number below this line */
764
+ /**/
765
+ 1751 ,
764
766
/**/
765
767
1750 ,
766
768
/**/
You can’t perform that action at this time.
0 commit comments