summaryrefslogtreecommitdiff
path: root/Master/texmf/asymptote/pstoedit.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/asymptote/pstoedit.asy')
-rw-r--r--Master/texmf/asymptote/pstoedit.asy18
1 files changed, 0 insertions, 18 deletions
diff --git a/Master/texmf/asymptote/pstoedit.asy b/Master/texmf/asymptote/pstoedit.asy
deleted file mode 100644
index 7baccd3ed69..00000000000
--- a/Master/texmf/asymptote/pstoedit.asy
+++ /dev/null
@@ -1,18 +0,0 @@
-pen textpen=basealign;
-pair align=Align;
-
-// Compatibility routines for the pstoedit (version 3.43 or later) backend.
-void gsave(picture pic=currentpicture)
-{
- pic.add(new void (frame f, transform) {
- gsave(f);
- },true);
-}
-
-void grestore(picture pic=currentpicture)
-{
- pic.add(new void (frame f, transform) {
- grestore(f);
- },true);
-}
-