Encode the score as an integer string, not as a string of integers. #5098.
2001-09-10 <NotZed@Ximian.com> * filter-score.c (format_sexp): Encode the score as an integer string, not as a string of integers. #5098. svn path=/trunk/; revision=12761
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2001-09-10 <NotZed@Ximian.com>
|
||||
|
||||
* filter-score.c (format_sexp): Encode the score as an integer
|
||||
string, not as a string of integers. #5098.
|
||||
|
||||
2001-09-10 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* filter-datespec.c (button_clicked): Allow the dialog's title to
|
||||
|
||||
@ -228,9 +228,6 @@ static void
|
||||
format_sexp (FilterElement *fe, GString *out)
|
||||
{
|
||||
FilterScore *fs = (FilterScore *)fe;
|
||||
char *score;
|
||||
|
||||
score = g_strdup_printf ("%d", fs->score);
|
||||
e_sexp_encode_string (out, score);
|
||||
g_free (score);
|
||||
g_string_sprintfa(out, "%d ", fs->score);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user