summaryrefslogtreecommitdiff
path: root/checks/48.patsubst
blob: 51a3494ae410c4c17773148aa73282e9d1ce6405 (plain)
1
2
3
4
5
6
7
8
9
dnl ../doc/m4.texinfo:2619: Origin of test
define(`upcase', `translit(`$*', `a-z', `A-Z')')dnl
define(`downcase', `translit(`$*', `A-Z', `a-z')')dnl
define(`capitalize1',
     `regexp(`$1', `^\(\w\)\(\w*\)', `upcase(`\1')`'downcase(`\2')')')dnl
define(`capitalize',
     `patsubst(`$1', `\w+', `capitalize1(`\&')')')dnl
capitalize(`GNUs not Unix')
dnl @result{}Gnus Not Unix