summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2008-08-22 14:54:19 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2008-08-26 23:01:15 +0100
commit590ccb900605f9bdf30f02f76b7dd622acb9a27d (patch)
treed56a5ddefc3c6bbdcb67b338ccd42f12bee3168f
parent78758b6acc0d7eca6bd2919e5fb039599a6e9a52 (diff)
[ps] Convert a few residual CRLF to LF.
Just a few CRLF eol-terminators remained, cluttering the output.
-rw-r--r--src/cairo-ps-surface.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cairo-ps-surface.c b/src/cairo-ps-surface.c
index f1ce1d15..25a8ad1c 100644
--- a/src/cairo-ps-surface.c
+++ b/src/cairo-ps-surface.c
@@ -2709,17 +2709,17 @@ _cairo_ps_surface_emit_linear_pattern (cairo_ps_surface_t *surface,
" << /ShadingType 2\n"
" /ColorSpace /DeviceRGB\n"
" /Coords [ %f %f %f %f ]\n"
- " /Domain [ %f %f ]\r\n"
+ " /Domain [ %f %f ]\n"
" /Function CairoFunction\n",
x1, y1, x2, y2,
first_stop, last_stop);
if (extend == CAIRO_EXTEND_PAD) {
_cairo_output_stream_printf (surface->stream,
- " /Extend [ true true ]\r\n");
+ " /Extend [ true true ]\n");
} else {
_cairo_output_stream_printf (surface->stream,
- " /Extend [ false false ]\r\n");
+ " /Extend [ false false ]\n");
}
_cairo_output_stream_printf (surface->stream,
@@ -2791,10 +2791,10 @@ _cairo_ps_surface_emit_radial_pattern (cairo_ps_surface_t *surface,
if (extend == CAIRO_EXTEND_PAD) {
_cairo_output_stream_printf (surface->stream,
- " /Extend [ true true ]\r\n");
+ " /Extend [ true true ]\n");
} else {
_cairo_output_stream_printf (surface->stream,
- " /Extend [ false false ]\r\n");
+ " /Extend [ false false ]\n");
}
_cairo_output_stream_printf (surface->stream,