@@ -103,10 +103,10 @@ edit_collect_completions_get_current_word (edit_search_status_msg_t *esm, mc_sea
103
103
*/
104
104
105
105
static void
106
- edit_collect_completion_from_one_buffer (gboolean active_buffer , GQueue * * compl ,
107
- mc_search_t * srch , edit_search_status_msg_t * esm ,
108
- off_t word_start , gsize word_len , off_t last_byte ,
109
- GString * current_word , int * max_width )
106
+ edit_collect_completion_from_one_buffer (gboolean active_buffer , GQueue * * compl , mc_search_t * srch ,
107
+ edit_search_status_msg_t * esm , off_t word_start ,
108
+ gsize word_len , off_t last_byte , GString * current_word ,
109
+ int * max_width )
110
110
{
111
111
GString * temp = NULL ;
112
112
gsize len = 0 ;
@@ -146,7 +146,7 @@ edit_collect_completion_from_one_buffer (gboolean active_buffer, GQueue * * comp
146
146
if (current_word != NULL && g_string_equal (current_word , temp ))
147
147
continue ;
148
148
149
- if (* compl == NULL )
149
+ if (* compl == NULL )
150
150
* compl = g_queue_new ();
151
151
else
152
152
{
@@ -339,7 +339,7 @@ edit_completion_string_free (gpointer data)
339
339
340
340
/* Public function for unit tests */
341
341
char *
342
- edit_completion_dialog_show (const WEdit * edit , GQueue * compl , int max_width )
342
+ edit_completion_dialog_show (const WEdit * edit , GQueue * compl , int max_width )
343
343
{
344
344
const WRect * we = & CONST_WIDGET (edit )-> rect ;
345
345
int start_x , start_y , offset ;
@@ -415,7 +415,7 @@ edit_complete_word_cmd (WEdit *edit)
415
415
gsize word_len = 0 ;
416
416
GString * match_expr ;
417
417
gsize i ;
418
- GQueue * compl ; // completions: list of GString*
418
+ GQueue * compl ; // completions: list of GString*
419
419
int max_width ;
420
420
421
421
// search start of word to be completed
@@ -436,7 +436,7 @@ edit_complete_word_cmd (WEdit *edit)
436
436
437
437
g_string_free (match_expr , TRUE);
438
438
439
- if (compl == NULL )
439
+ if (compl == NULL )
440
440
return ;
441
441
442
442
if (g_queue_get_length (compl ) == 1 )
0 commit comments