Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / contrib / groff / font / devps / generate / symbolsl.awk
1 /^StartFontMetrics / {
2  print
3  while ((getline < SYMAFM) > 0) {
4   if (/^CharacterSet / || /^EncodingScheme / || /^Comment /) { print }
5  }
6  next
7 }
8 /^ItalicAngle 0$/ {
9  print "ItalicAngle -15.5"
10  next
11 }
12 /^FullName / {
13  print $0 " Slanted"
14  next
15 }
16 /^FSType / {
17  next
18 }
19 { print }