File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1453,9 +1453,9 @@ openscript(
14531453 oldcurscript = curscript ;
14541454 do
14551455 {
1456- update_topline_cursor (); /* update cursor position and topline */
1457- normal_cmd (& oa , FALSE); /* execute one command */
1458- vpeekc (); /* check for end of file */
1456+ update_topline_cursor (); // update cursor position and topline
1457+ normal_cmd (& oa , FALSE); // execute one command
1458+ vpeekc (); // check for end of file
14591459 }
14601460 while (scriptin [oldcurscript ] != NULL );
14611461
@@ -1753,7 +1753,11 @@ vgetc(void)
17531753 buf [i ] = vgetorpeek (TRUE);
17541754 if (buf [i ] == K_SPECIAL
17551755#ifdef FEAT_GUI
1756- || (gui .in_use && buf [i ] == CSI )
1756+ || (
1757+ # ifdef VIMDLL
1758+ gui .in_use &&
1759+ # endif
1760+ buf [i ] == CSI )
17571761#endif
17581762 )
17591763 {
Original file line number Diff line number Diff line change @@ -767,6 +767,8 @@ static char *(features[]) =
767767
768768static int included_patches [] =
769769{ /* Add new patch number below this line */
770+ /**/
771+ 1358 ,
770772/**/
771773 1357 ,
772774/**/
You can’t perform that action at this time.
0 commit comments