summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1999-09-22 19:30:45 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1999-09-22 19:30:45 +0000
commit596561ded7c835eef91f7b5cc1d57f2c0c00395e (patch)
treeca152f487a4e36ca1ef4636303c9a8c547fd00dc /graphics
parentUpgrade to version 5.5 (diff)
Bug fix for 3.x: unbreak drivers (e.g. the gif driver) using the %VAL(...)
F77 feature.
Notes
Notes: svn path=/head/; revision=21888
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 {