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:
0
2001-09-11 02:20:18 +00:00
committed by Michael Zucci
parent 6b9b642917
commit fbd6d6907c
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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);
}