~ubuntu-branches/ubuntu/edgy/w3m/edgy-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN {
  print "FuncList w3mFuncList[] = {";
  n = 0;
}
/^#/ { next }
{
  print "/*" n "*/ {\"" $1 "\"," $2 "},";
  n++;
} 
END {
  print "{ NULL, NULL }"
  print "};"
}