mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-11 05:49:18 +03:00
Fixed up several comments
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
parent
ed5cc99fed
commit
d6f2d82618
14
src/find.c
14
src/find.c
@ -3,7 +3,7 @@
|
|||||||
2006, 2007 Free Software Foundation, Inc.
|
2006, 2007 Free Software Foundation, Inc.
|
||||||
Written 1995 by Miguel de Icaza
|
Written 1995 by Miguel de Icaza
|
||||||
|
|
||||||
Complete rewrote.
|
Complete rewrite.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
@ -615,7 +615,7 @@ pop_directory (void)
|
|||||||
return (char *) g_queue_pop_tail (&dir_queue);
|
return (char *) g_queue_pop_tail (&dir_queue);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove all the items in the stack */
|
/* Remove all the items from the stack */
|
||||||
static void
|
static void
|
||||||
clear_stack (void)
|
clear_stack (void)
|
||||||
{
|
{
|
||||||
@ -623,7 +623,7 @@ clear_stack (void)
|
|||||||
g_queue_clear (&dir_queue);
|
g_queue_clear (&dir_queue);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* GLIB_CHAECK_VERSION */
|
#else /* GLIB_CHECK_VERSION */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
push_directory (const char *dir)
|
push_directory (const char *dir)
|
||||||
@ -653,7 +653,7 @@ pop_directory (void)
|
|||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove all the items in the stack */
|
/* Remove all the items from the stack */
|
||||||
static void
|
static void
|
||||||
clear_stack (void)
|
clear_stack (void)
|
||||||
{
|
{
|
||||||
@ -662,7 +662,7 @@ clear_stack (void)
|
|||||||
g_free (dir);
|
g_free (dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* GLIB_CHAECK_VERSION */
|
#endif /* GLIB_CHECK_VERSION */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
insert_file (const char *dir, const char *file)
|
insert_file (const char *dir, const char *file)
|
||||||
@ -1058,7 +1058,7 @@ init_find_vars (void)
|
|||||||
old_dir = NULL;
|
old_dir = NULL;
|
||||||
matches = 0;
|
matches = 0;
|
||||||
|
|
||||||
/* Remove all the items in the stack */
|
/* Remove all the items from the stack */
|
||||||
clear_stack ();
|
clear_stack ();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1321,7 +1321,7 @@ find_file (const char *start_dir, const char *pattern, const char *content,
|
|||||||
|
|
||||||
return_value = run_process ();
|
return_value = run_process ();
|
||||||
|
|
||||||
/* Remove all the items in the stack */
|
/* Remove all the items from the stack */
|
||||||
clear_stack ();
|
clear_stack ();
|
||||||
|
|
||||||
get_list_info (&file_tmp, &dir_tmp);
|
get_list_info (&file_tmp, &dir_tmp);
|
||||||
|
Loading…
Reference in New Issue
Block a user