File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -1025,7 +1025,7 @@ edit(
10251025 case Ctrl_Z : /* suspend when 'insertmode' set */
10261026 if (!p_im )
10271027 goto normalchar ; /* insert CTRL-Z as normal char */
1028- stuffReadbuff ((char_u * )":st\r " );
1028+ do_cmdline_cmd ((char_u * )"stop " );
10291029 c = Ctrl_O ;
10301030 /*FALLTHROUGH*/
10311031
Original file line number Diff line number Diff line change @@ -11859,6 +11859,7 @@ get_cmd_output_as_rettv(
1185911859 if (buf == NULL )
1186011860 {
1186111861 EMSGN (_ (e_nobufnr ), argvars [1 ].vval .v_number );
11862+ fclose (fd );
1186211863 goto errret ;
1186311864 }
1186411865
Original file line number Diff line number Diff line change @@ -2984,9 +2984,9 @@ do_mouse(
29842984 if (State & INSERT )
29852985 stuffcharReadbuff (Ctrl_O );
29862986 if (curwin -> w_llist_ref == NULL ) /* quickfix window */
2987- stuffReadbuff ((char_u * )": .cc\n " );
2987+ do_cmdline_cmd ((char_u * )".cc" );
29882988 else /* location list window */
2989- stuffReadbuff ((char_u * )": .ll\n " );
2989+ do_cmdline_cmd ((char_u * )".ll" );
29902990 got_click = FALSE; /* ignore drag&release now */
29912991 }
29922992#endif
Original file line number Diff line number Diff line change @@ -779,6 +779,10 @@ static char *(features[]) =
779779
780780static int included_patches [] =
781781{ /* Add new patch number below this line */
782+ /**/
783+ 208 ,
784+ /**/
785+ 207 ,
782786/**/
783787 206 ,
784788/**/
You can’t perform that action at this time.
0 commit comments