convert tabs to 8 spaces, so that people with different

tab-stop settings can see correctly indented code :-)


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8449 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2003-05-29 16:14:57 +00:00
parent 58816103a3
commit 7c58366d4f

View File

@ -338,7 +338,14 @@ static int sort_func (gconstpointer a, gconstpointer b)
}
}
static int check_object (QueryNew *q, gpointer object)
/* ==================================================================== */
/* This is the main workhorse for performing the query. For each
* object, it walks over all of the query terms to see if the
* object passes the seive.
*/
static int
check_object (QueryNew *q, gpointer object)
{
GList * and_ptr;
GList * or_ptr;