@@ -2800,7 +2800,7 @@ compile_arguments(char_u **arg, cctx_T *cctx, int *argcount)
28002800
28012801 if (* p != ',' && * skipwhite (p ) == ',' )
28022802 {
2803- semsg (_ (e_no_white_space_allowed_before_str ), "," );
2803+ semsg (_ (e_no_white_space_allowed_before_str_str ), "," , p );
28042804 p = skipwhite (p );
28052805 }
28062806 if (* p == ',' )
@@ -3055,7 +3055,7 @@ compile_list(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
30553055 }
30563056 if (* p == ',' )
30573057 {
3058- semsg (_ (e_no_white_space_allowed_before_str ), "," );
3058+ semsg (_ (e_no_white_space_allowed_before_str_str ), "," , p );
30593059 return FAIL ;
30603060 }
30613061 if (* p == ']' )
@@ -3234,7 +3234,7 @@ compile_dict(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
32343234 if (* * arg != ':' )
32353235 {
32363236 if (* skipwhite (* arg ) == ':' )
3237- semsg (_ (e_no_white_space_allowed_before_str ), ":" );
3237+ semsg (_ (e_no_white_space_allowed_before_str_str ), ":" , * arg );
32383238 else
32393239 semsg (_ (e_missing_dict_colon ), * arg );
32403240 return FAIL ;
@@ -3273,7 +3273,7 @@ compile_dict(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
32733273 }
32743274 if (IS_WHITE_OR_NUL (* whitep ))
32753275 {
3276- semsg (_ (e_no_white_space_allowed_before_str ), "," );
3276+ semsg (_ (e_no_white_space_allowed_before_str_str ), "," , whitep );
32773277 return FAIL ;
32783278 }
32793279 whitep = * arg + 1 ;
@@ -4270,7 +4270,7 @@ compile_expr7t(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
42704270 if (* * arg != '>' )
42714271 {
42724272 if (* skipwhite (* arg ) == '>' )
4273- semsg (_ (e_no_white_space_allowed_before_str ), ">" );
4273+ semsg (_ (e_no_white_space_allowed_before_str_str ), ">" , * arg );
42744274 else
42754275 emsg (_ (e_missing_gt ));
42764276 return FAIL ;
0 commit comments