diff options
author | Ken Sharp <ken.sharp@artifex.com> | 2012-05-18 14:32:56 +0100 |
---|---|---|
committer | Ken Sharp <ken.sharp@artifex.com> | 2012-05-18 14:32:56 +0100 |
commit | 40cc976eae680d6a6f1297c5a0d556a37e9eb4b8 (patch) | |
tree | 8e7903099fd14c4212fdae9f3aa46fd8419390bb | |
parent | 44869447f94a15ae0082b89668576636e4c39575 (diff) |
txtwrite - clean up some benign silly compiler warnings
-rw-r--r-- | gs/base/gdevtxtw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gs/base/gdevtxtw.c b/gs/base/gdevtxtw.c index 46833c9dd..9b36a1c2c 100644 --- a/gs/base/gdevtxtw.c +++ b/gs/base/gdevtxtw.c @@ -129,7 +129,6 @@ static dev_proc_fill_path(txtwrite_fill_path); static dev_proc_stroke_path(txtwrite_stroke_path); static dev_proc_text_begin(txtwrite_text_begin); static dev_proc_strip_copy_rop(txtwrite_strip_copy_rop); -static dev_proc_strip_copy_rop2(txtwrite_strip_copy_rop2); /* The device prototype */ #define X_DPI 72 @@ -1114,6 +1113,7 @@ txtwrite_stroke_path(gx_device * dev, const gs_imager_state * pis, gx_path * ppa return 0; } +#if 0 static int txtwrite_fill_mask(gx_device * dev, const byte * data, int dx, int raster, gx_bitmap_id id, @@ -1134,6 +1134,7 @@ txtwrite_begin_typed_image(gx_device * dev, { return 0; } +#endif /* ------ Text imaging ------ */ |