summaryrefslogtreecommitdiffstats
path: root/font/devps/generate/symbolsl.awk
blob: ad36995814b4329ed74565ca463536fd186c611e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/^StartFontMetrics / {
 print
 while ((getline < SYMAFM) > 0) {
  if (/^CharacterSet / || /^EncodingScheme / || /^Comment /) { print }
 }
 next
}
/^ItalicAngle 0$/ {
 print "ItalicAngle -15.5"
 next
}
/^FullName / {
 print $0 " Slanted"
 next
}
/^FSType / {
 next
}
{ print }