diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | src/extension/internal/ps.cpp | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-05-20 MenTaLguY <mental@rydia.net> + + * src/extensin/internal/ps.cpp: + + add %%EOF trailer for DSC-compliance + 2006-05-20 Colin Marquardt <colin@marquardt-home.de> * share/extensions/lindenmayer.inx, diff --git a/src/extension/internal/ps.cpp b/src/extension/internal/ps.cpp index efc689a77..d474f8533 100644 --- a/src/extension/internal/ps.cpp +++ b/src/extension/internal/ps.cpp @@ -417,6 +417,8 @@ PrintPS::begin(Inkscape::Extension::Print *mod, SPDocument *doc) } } + os << "%%EOF\n"; + /* FIXME: This function is declared to return unsigned, whereas fprintf returns a signed int * * that can be zero if the first fprintf failed (os is empty) or "negative" (i.e. very positive * in unsigned int interpretation) if the first fprintf failed but this one succeeds, or |
