diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2019-12-02 06:14:00 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2019-12-02 06:14:00 +0000 |
commit | 065f37c54f8b8d28a4cb20b86b45ad76cab773ef (patch) | |
tree | 9871141ae47ec3d6c6d8fe2c8a9d6ecbd8906d67 /math/gnuplot/files | |
parent | Fix packing list (diff) |
Update to 5.2.8
Notes
Notes:
svn path=/head/; revision=518826
Diffstat (limited to 'math/gnuplot/files')
-rw-r--r-- | math/gnuplot/files/patch-term-fig.trm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/math/gnuplot/files/patch-term-fig.trm b/math/gnuplot/files/patch-term-fig.trm deleted file mode 100644 index 1957921c914c..000000000000 --- a/math/gnuplot/files/patch-term-fig.trm +++ /dev/null @@ -1,15 +0,0 @@ ---- term/fig.trm.orig -+++ term/fig.trm -@@ -680,11 +680,11 @@ - double empirical_scale = 3.0; - (void) custom_dash_pattern; /* ignore */ - if (type <= 0) -- type = LT_SOLID; -+ type = SOLID_LINE; - FIG_type = type % 6; - /* FIXME: should pass through "dl" somehow */ - FIG_spacing = empirical_scale * FIG_current_linewidth; -- FIG_line.cap_style = (FIG_type == 0) ? CAP_BUTT : CAP_ROUND; -+ FIG_line.cap_style = (FIG_type == SOLID_LINE) ? CAP_BUTT : CAP_ROUND; - } - |