summaryrefslogtreecommitdiffhomepage
path: root/lib.m4
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-25 18:25:35 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-25 18:25:35 +0200
commit35920b11c9dfdc001eea7d3b2582c58aa3aa381b (patch)
tree8e30789b91a9651ea61abf3ff499cbc8155dbb96 /lib.m4
parentfc1385dc7a6e788e5dcdb25169c77f93eb56b10a (diff)
Fix mintmark display for German extras table
Diffstat (limited to 'lib.m4')
-rw-r--r--lib.m44
1 files changed, 1 insertions, 3 deletions
diff --git a/lib.m4 b/lib.m4
index d15a05d..02ae9ef 100644
--- a/lib.m4
+++ b/lib.m4
@@ -4,14 +4,12 @@ m4_changequote([,])
m4_dnl Output ‘$2’ if the country code matches ‘$1’
m4_define(__ifcode, [m4_ifelse(__code, [$1], [$2])])
+m4_dnl Output ‘$1’ if the country with code ‘__code’ has extra coins
m4_define(__ifextra, [
m4_syscmd(grep -iq '^__code' data/extras)
m4_ifelse(m4_sysval, 0, [$1])
])
-m4_dnl Expand ‘$3’ if ‘$1’ is a substring of ‘$2’
-m4_define(__ifhas, [m4_ifelse(m4_index([$2], [$1]), -1, [], [$3])])
-
m4_dnl Execute the script ‘$1’ in the ‘scripts/’ directory
m4_define(__esyscmd, [m4_esyscmd([scripts/$1])])