summaryrefslogtreecommitdiff
path: root/textproc/opensched/files/patch-ae
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2014-07-29 15:20:01 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2014-07-29 15:20:01 +0000
commit0438fc26f0d6919bbce73c2edd0403bc86de4371 (patch)
tree2150fb848141aac7ed7a5aa3efcb9d9faa7d5fa2 /textproc/opensched/files/patch-ae
parentRename sysutils/ patch-xy patches to reflect the files they modify. (diff)
Rename textproc/ patch-xy patches to reflect the files they modify.
Diffstat (limited to 'textproc/opensched/files/patch-ae')
-rw-r--r--textproc/opensched/files/patch-ae58
1 files changed, 0 insertions, 58 deletions
diff --git a/textproc/opensched/files/patch-ae b/textproc/opensched/files/patch-ae
deleted file mode 100644
index 45a6cfbf64b8..000000000000
--- a/textproc/opensched/files/patch-ae
+++ /dev/null
@@ -1,58 +0,0 @@
-*** src/graph.c.org Wed Jan 31 15:15:27 2001
---- src/graph.c Wed Jan 31 15:22:39 2001
-***************
-*** 66,71 ****
---- 66,95 ----
- fprintf(f," fill\n");
- fprintf(f," } def\n");
-
-+ fprintf(f,"/REDBOX\n");
-+ fprintf(f," {\n");
-+ fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-+ fprintf(f," x1 y1 moveto\n");
-+ fprintf(f," x2 y1 lineto\n");
-+ fprintf(f," x2 y2 lineto\n");
-+ fprintf(f," x1 y2 lineto\n");
-+ fprintf(f," closepath\n");
-+ fprintf(f," 1 %f %f setrgbcolor\n",tg_gray,tg_gray);
-+ fprintf(f," fill\n");
-+ fprintf(f," } def\n");
-+
-+ fprintf(f,"/BLUEBOX\n");
-+ fprintf(f," {\n");
-+ fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-+ fprintf(f," x1 y1 moveto\n");
-+ fprintf(f," x2 y1 lineto\n");
-+ fprintf(f," x2 y2 lineto\n");
-+ fprintf(f," x1 y2 lineto\n");
-+ fprintf(f," closepath\n");
-+ fprintf(f," %f %f 1 setrgbcolor\n",tg_gray,tg_gray);
-+ fprintf(f," fill\n");
-+ fprintf(f," } def\n");
-+
- fprintf(f,"/OUTLINE\n");
- fprintf(f," {\n");
- fprintf(f," /y2 exch def /y1 exch def /x2 exch def /x1 exch def\n");
-***************
-*** 267,273 ****
- for( i=tb->start; i<=tb->finish; ++i )
- {
- tb_x1 = MapX( i, start, finish );
-! fprintf(f,"%d %d %d %d BOX\n", tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
- }
- }
-
---- 291,303 ----
- for( i=tb->start; i<=tb->finish; ++i )
- {
- tb_x1 = MapX( i, start, finish );
-! if (t->children > 0)
-! fprintf(f,"%d %d %d %d REDBOX\n",
-! tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
-! else
-! fprintf(f,"%d %d %d %d BLUEBOX\n",
-! tb_x1, tb_x1+tg_width, tb_y1, tb_y2);
-!
- }
- }
-