diff options
author | Carl Worth <cworth@cworth.org> | 2003-07-26 20:38:58 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2003-07-26 20:38:58 +0000 |
commit | 47844ba222600301bf46c521fc84d27e93586bc7 (patch) | |
tree | 3c17105f74b2a7457519add8ffa058fa8d5d7dc8 /util | |
parent | 953b708e2c483f41bb45a3694833dd8b62b4f415 (diff) | |
download | cairo-47844ba222600301bf46c521fc84d27e93586bc7.tar.gz |
Fixed to not munge some internal cairot names, (such as cairo_traps_*)
Diffstat (limited to 'util')
-rwxr-xr-x | util/xr2cairo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xr2cairo b/util/xr2cairo index ee19e2e14..c749aa4fd 100755 --- a/util/xr2cairo +++ b/util/xr2cairo @@ -34,7 +34,7 @@ xr2cairo() { s/cairo_\(fill_rule\|line_cap\|line_join\|format\|operator\|status\|filter\|surface\|matrix\)\([^_]\)/cairo_\1_t\2/g s/_cairo_\(fill_rule\|line_cap\|line_join\|format\|operator\|status\|filter\|surface\|matrix\)_t/cairo_\1/g s/cairo_state/cairo_t/g - s/_cairo_t/cairo/g + s/_cairo_t\([^a-zA-Z0-9_]\)/cairo\1/g s/Xr\.h/cairo.h/g |