summaryrefslogtreecommitdiff
path: root/print/gv/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'print/gv/patches/patch-ac')
-rw-r--r--print/gv/patches/patch-ac26
1 files changed, 0 insertions, 26 deletions
diff --git a/print/gv/patches/patch-ac b/print/gv/patches/patch-ac
deleted file mode 100644
index 105748fcf1e..00000000000
--- a/print/gv/patches/patch-ac
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-ac,v 1.9 2006/11/21 13:58:10 tron Exp $
-
---- src/ps.c.orig 2006-07-07 16:35:49.000000000 +0100
-+++ src/ps.c 2006-11-21 13:49:17.000000000 +0000
-@@ -1396,6 +1396,8 @@
- quoted=1;
- line++;
- while (*line && !(*line == ')' && level == 0 )) {
-+ if (cp - text >= PSLINELENGTH - 1)
-+ break;
- if (*line == '\\') {
- if (*(line+1) == 'n') {
- *cp++ = '\n';
-@@ -1450,8 +1452,11 @@
- }
- }
- } else {
-- while (*line && !(*line == ' ' || *line == '\t' || *line == '\n'))
-+ while (*line && !(*line == ' ' || *line == '\t' || *line == '\n')) {
-+ if (cp - text >= PSLINELENGTH - 2)
-+ break;
- *cp++ = *line++;
-+ }
- }
- *cp = '\0';
- if (next_char) *next_char = line;