aboutsummaryrefslogtreecommitdiff
path: root/Defcolor.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-04 15:18:08 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-04 15:18:08 -0400
commit70fd14e98bc476a84aef352eaf063cfcba44ab83 (patch)
tree2737f5c1c21c76824f49c6a1b9c7061952b646f5 /Defcolor.f
parentc396a4bc7a3282de9d2191de0e1076fec9df0783 (diff)
downloadmoog-70fd14e98bc476a84aef352eaf063cfcba44ab83.tar.gz
Use modern equality operators
Diffstat (limited to 'Defcolor.f')
-rwxr-xr-xDefcolor.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/Defcolor.f b/Defcolor.f
index 16e1c85..7ecee01 100755
--- a/Defcolor.f
+++ b/Defcolor.f
@@ -20,8 +20,8 @@ c*****assign colors to character arrays
colors(8) = 'black '
- if (choice.eq.'h' .or. choice.eq.'f' .or.
- . choice.eq.'g') then
+ if (choice=='h' .or. choice=='f' .or.
+ . choice=='g') then
call sm_ctype (colors(8))
else
call sm_ctype (colors(icolor))