gdk/makecursor* gdk/makekeysym* gdk/Makefile.am Removed old sed/awk code

* gdk/makecursor* gdk/makekeysym* gdk/Makefile.am
  Removed old sed/awk code and replaced it with a
  spiffier awk-only code from Art_Haas@dril-quip.com

                                        -owt
This commit is contained in:
Owen Taylor
1997-12-13 00:58:24 +00:00
parent 19096ebdfd
commit c3fe09e069
8 changed files with 70 additions and 57 deletions

5
gdk/makekeysyms.awk Executable file
View File

@ -0,0 +1,5 @@
$1 == "#define" && NF >= 3 {
sub(/^XK/,"GDK",$2)
sub(/0X/,"0x",$3)
print $1,$2,$3
}