summaryrefslogtreecommitdiff
path: root/csslint
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@gnome.org>2004-03-03 23:07:38 +0000
committerDodji Seketeli <dodji@src.gnome.org>2004-03-03 23:07:38 +0000
commit4d573434939be5fd0c05c2aaa172c1a75a5f10a4 (patch)
treee3addf8fd6faa2746443e99b638594fb120131bc /csslint
parenteaf5bef62adc36e423af51c223dbaa330f1964d4 (diff)
downloadlibcroco-4d573434939be5fd0c05c2aaa172c1a75a5f10a4.tar.gz
put a '\n' after dumping the sheet on screen. fixed a small bug in here.
2004-03-03 Dodji Seketeli <dodji@gnome.org> * csslint/csslint.c: (cssom_parse) put a '\n' after dumping the sheet on screen. * src/cr-parser.c: (cr_parser_parse_page): fixed a small bug in here. This should fix http://bugzilla.gnome.org/show_bug.cgi?id=136109. * src/cr-statement.c: (cr_statement_dump_page): added a white space before dumping the pseudo part of the @page rule.
Diffstat (limited to 'csslint')
-rw-r--r--csslint/csslint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/csslint/csslint.c b/csslint/csslint.c
index 87f5811..c0d01c6 100644
--- a/csslint/csslint.c
+++ b/csslint/csslint.c
@@ -277,6 +277,7 @@ cssom_parse (guchar * a_file_uri)
if (status == CR_OK && stylesheet)
{
cr_stylesheet_dump (stylesheet, stdout) ;
+ g_print ("\n") ;
cr_stylesheet_destroy (stylesheet) ;
}
cr_om_parser_destroy (parser) ;