@@ -841,7 +841,11 @@ static void remove_timer(void);
841841// timers are presented in GUI only
842842# if defined(FEAT_GUI_MSWIN )
843843 static void CALLBACK
844- timer_proc (HWND hwnd UNUSED , UINT uMsg UNUSED , UINT_PTR idEvent UNUSED , DWORD dwTime UNUSED )
844+ timer_proc (
845+ HWND hwnd UNUSED ,
846+ UINT uMsg UNUSED ,
847+ UINT_PTR idEvent UNUSED ,
848+ DWORD dwTime UNUSED )
845849# elif defined(FEAT_GUI_GTK )
846850 static gboolean
847851timer_proc (gpointer data UNUSED )
@@ -1306,7 +1310,10 @@ mzscheme_init(void)
13061310 * Evaluate command with exception handling
13071311 */
13081312 static int
1309- eval_with_exn_handling (void * data , Scheme_Closed_Prim * what , Scheme_Object * * ret )
1313+ eval_with_exn_handling (
1314+ void * data ,
1315+ Scheme_Closed_Prim * what ,
1316+ Scheme_Object * * ret )
13101317{
13111318 Scheme_Object * value = NULL ;
13121319 Scheme_Object * exn = NULL ;
@@ -1698,7 +1705,10 @@ vim_eval(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
16981705 * (range-start)
16991706 */
17001707 static Scheme_Object *
1701- get_range_start (void * data UNUSED , int argc UNUSED , Scheme_Object * * argv UNUSED )
1708+ get_range_start (
1709+ void * data UNUSED ,
1710+ int argc UNUSED ,
1711+ Scheme_Object * * argv UNUSED )
17021712{
17031713 return scheme_make_integer (range_start );
17041714}
@@ -1883,7 +1893,10 @@ get_curr_win(void *data UNUSED, int argc UNUSED, Scheme_Object **argv UNUSED)
18831893 * (win-count)
18841894 */
18851895 static Scheme_Object *
1886- get_window_count (void * data UNUSED , int argc UNUSED , Scheme_Object * * argv UNUSED )
1896+ get_window_count (
1897+ void * data UNUSED ,
1898+ int argc UNUSED ,
1899+ Scheme_Object * * argv UNUSED )
18871900{
18881901 int n = 0 ;
18891902 win_T * w ;
@@ -2275,7 +2288,10 @@ get_buffer_num(void *data, int argc, Scheme_Object **argv)
22752288 * (buff-count)
22762289 */
22772290 static Scheme_Object *
2278- get_buffer_count (void * data UNUSED , int argc UNUSED , Scheme_Object * * argv UNUSED )
2291+ get_buffer_count (
2292+ void * data UNUSED ,
2293+ int argc UNUSED ,
2294+ Scheme_Object * * argv UNUSED )
22792295{
22802296 buf_T * b ;
22812297 int n = 0 ;
@@ -2300,7 +2316,10 @@ get_buffer_name(void *data, int argc, Scheme_Object **argv)
23002316 * (curr-buff)
23012317 */
23022318 static Scheme_Object *
2303- get_curr_buffer (void * data UNUSED , int argc UNUSED , Scheme_Object * * argv UNUSED )
2319+ get_curr_buffer (
2320+ void * data UNUSED ,
2321+ int argc UNUSED ,
2322+ Scheme_Object * * argv UNUSED )
23042323{
23052324 return (Scheme_Object * )get_vim_curr_buffer ();
23062325}
@@ -2997,7 +3016,10 @@ vim_to_mzscheme(typval_T *vim_value)
29973016}
29983017
29993018 static Scheme_Object *
3000- vim_to_mzscheme_impl (typval_T * vim_value , int depth , Scheme_Hash_Table * visited )
3019+ vim_to_mzscheme_impl (
3020+ typval_T * vim_value ,
3021+ int depth ,
3022+ Scheme_Hash_Table * visited )
30013023{
30023024 Scheme_Object * result = NULL ;
30033025 int new_value = TRUE;
0 commit comments