aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorjmz <jmz@FreeBSD.org>1999-09-23 03:30:45 +0800
committerjmz <jmz@FreeBSD.org>1999-09-23 03:30:45 +0800
commitf5abe3eeb821d7e86dd5667582b029e7efc54cc6 (patch)
treec63b35aac72578fd6ff8ff8b4b18aef70014e5d2 /graphics
parentb928a365a980da0c2a5f32a0acd8e7622cb2507d (diff)
downloadfreebsd-ports-gnome-f5abe3eeb821d7e86dd5667582b029e7efc54cc6.tar.gz
freebsd-ports-gnome-f5abe3eeb821d7e86dd5667582b029e7efc54cc6.tar.zst
freebsd-ports-gnome-f5abe3eeb821d7e86dd5667582b029e7efc54cc6.zip
Bug fix for 3.x: unbreak drivers (e.g. the gif driver) using the %VAL(...)
F77 feature.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/pgplot/files/xf773
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/pgplot/files/xf77 b/graphics/pgplot/files/xf77
index 554d36ecd08f..6e04a2ebdca7 100644
--- a/graphics/pgplot/files/xf77
+++ b/graphics/pgplot/files/xf77
@@ -38,8 +38,9 @@ sub phase1 {
sub phase2 {
while (<>) {
if (/(\s*)(\w*)(\s*=\s*)($ctxt)/) {
+ $p = $2;
s/$ctxt\(&/\(/;
- $names[$count] = $2;
+ $names[$count] = $p;
$count++;
print $_;
} else {