diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-06 15:35:48 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-06 15:35:48 -0700 |
commit | 4670366ede0b0ed1abf47f4595a64bc5cd3c19fc (patch) | |
tree | 6200d30b9035b419bdbcd8fe68708c3d120b3996 /src/cairo-traps.c | |
parent | 80b8deb1e4f9d0b856106031c6a7a629cca7552c (diff) |
Remove trailing whitespace from lines that look like comments.
This patch was produced with the following (GNU) sed script:
sed -i -r -e '/^[ \t]*\/?\*/ s/[ \t]+$//'
run on all *.[ch] files within cairo, (though I manually excluded
src/cairo-atsui-font.c which has a code line that appears as a comment
to this script).
Diffstat (limited to 'src/cairo-traps.c')
-rw-r--r-- | src/cairo-traps.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cairo-traps.c b/src/cairo-traps.c index a3f1fca0..93f4eadd 100644 --- a/src/cairo-traps.c +++ b/src/cairo-traps.c @@ -93,7 +93,7 @@ _cairo_traps_fini (cairo_traps_t *traps) * @traps: a #cairo_traps_t * @box: a box that will be converted to a single trapezoid * to store in @traps. - * + * * Initializes a cairo_traps_t to contain a single rectangular * trapezoid. **/ @@ -577,7 +577,7 @@ _line_segs_intersect_ceil (cairo_line_t *l1, cairo_line_t *l2, cairo_fixed_t *y_ _cairo_int32_to_int64 (1)); } - /* + /* * Now convert from 32.32 to 48.16 and take the ceiling; * this requires adding in 15 1 bits and shifting the result */ @@ -860,10 +860,10 @@ _cairo_traps_extents (cairo_traps_t *traps, cairo_box_t *extents) * exactly representable as a pixman region, otherwise a * a pointer to such a region, newly allocated. * (free with pixman region destroy) - * + * * Determines if a set of trapezoids are exactly representable as a * pixman region, and if so creates such a region. - * + * * Return value: %CAIRO_STATUS_SUCCESS or %CAIRO_STATUS_NO_MEMORY **/ cairo_status_t |