Displaying 1 result from an estimated 1 matches for "textfn".
Did you mean:
testfn
2009 Jan 25
1
Warning for dropped text with devices that don't support clipping (in text attachments)
...)
unlink("test.fig")
------- patch -------
Index: src/main/engine.c
===================================================================
--- src/main/engine.c (revision 47716)
+++ src/main/engine.c (working copy)
@@ -1424,7 +1424,7 @@
if (toDevice) /* Device will do clipping */
textfn(x, y, str, rot, hadj, gc, dd->dev);
else /* don't draw anything; this could be made less crude :) */
- ;
+ warning(_("current device doesn't support clipping, text removed
'%s'"), str);
}
}