summaryrefslogtreecommitdiff
path: root/math/gnuplot+/files/patch-xb
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-01-24 06:19:03 +0000
committerSteve Price <steve@FreeBSD.org>2000-01-24 06:19:03 +0000
commitd80572ef7327df981c91c314d7a450e3a9684ea1 (patch)
tree5a4b19e15869f9899f7841f156c0e8f758d462d8 /math/gnuplot+/files/patch-xb
parentFrom maintainer: (diff)
o Fix Configuration Option for readline library
o Add patch to avoid divide-by-zero trap o Merge patches for gnuplot-3.7.1 PR: 16120 Submitted by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp> Reviewed by: maintainer
Diffstat (limited to 'math/gnuplot+/files/patch-xb')
-rw-r--r--math/gnuplot+/files/patch-xb22
1 files changed, 22 insertions, 0 deletions
diff --git a/math/gnuplot+/files/patch-xb b/math/gnuplot+/files/patch-xb
new file mode 100644
index 000000000000..4b6b5e6fe5bc
--- /dev/null
+++ b/math/gnuplot+/files/patch-xb
@@ -0,0 +1,22 @@
+# key-below-clipping
+--- graphics.c.ORIG Wed Sep 15 16:30:29 1999
++++ graphics.c Wed Nov 17 17:22:24 1999
+@@ -1763,7 +1763,9 @@
+ #else
+ int x = xl + key_text_right - (t->h_char) * strlen(s);
+ #endif
+- if (key_hpos == TOUT || inrange(x, xleft, xright))
++ if (key_hpos == TOUT ||
++ key_vpos == TUNDER || /* HBB 990327 */
++ inrange(x, xleft, xright))
+ (*t->put_text) (x, yl, s);
+ }
+ }
+@@ -1820,6 +1822,7 @@
+ int x = xl + key_text_right - (t->h_char) * strlen(this_plot->title);
+ #endif
+ if (key_hpos == TOUT ||
++ key_vpos == TUNDER || /* HBB 990327 */
+ i_inrange(x, xleft, xright))
+ (*t->put_text) (x, yl, this_plot->title);
+ }