diff options
Diffstat (limited to 'src/cairo-pdf-operators.c')
-rw-r--r-- | src/cairo-pdf-operators.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cairo-pdf-operators.c b/src/cairo-pdf-operators.c index 22c0a88d..7b88092e 100644 --- a/src/cairo-pdf-operators.c +++ b/src/cairo-pdf-operators.c @@ -48,8 +48,6 @@ #include "cairo-output-stream-private.h" #include "cairo-scaled-font-subsets-private.h" -#include <ctype.h> - static cairo_status_t _cairo_pdf_operators_end_text (cairo_pdf_operators_t *pdf_operators); @@ -180,7 +178,7 @@ _count_word_up_to (const unsigned char *s, int length) int word = 0; while (length--) { - if (! (isspace (*s) || *s == '<')) { + if (! (_cairo_isspace (*s) || *s == '<')) { s++; word++; } else { @@ -239,7 +237,7 @@ _word_wrap_stream_write (cairo_output_stream_t *base, length--; _cairo_output_stream_printf (stream->output, ">"); stream->column++; - } else if (isspace (*data)) { + } else if (_cairo_isspace (*data)) { newline = (*data == '\n' || *data == '\r'); if (! newline && stream->column >= stream->max_column) { _cairo_output_stream_printf (stream->output, "\n"); |