1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 138-remove-declaration-repeat.dpatch by Lifeng Sun <lifongsun@gmail.com>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Remove invalid declaration of REPEAT function.
@DPATCH@
diff --git a/src/mathlib/gen/tests/vecdraw.F b/src/mathlib/gen/tests/vecdraw.F
index 2ae9de7..33b3ff5 100644
--- a/src/mathlib/gen/tests/vecdraw.F
+++ b/src/mathlib/gen/tests/vecdraw.F
@@ -15,7 +15,7 @@ C
C- Simple vector drawing routine
C
DIMENSION V(*)
- CHARACTER*78 LINE,REPEAT
+ CHARACTER*78 LINE
C
VMAX=0.
VMIN=0.
|