[cairo-commit] src/check-headers.sh

Behdad Esfahbod behdad at kemper.freedesktop.org
Mon Oct 2 11:35:43 PDT 2006


 src/check-headers.sh |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
diff-tree 1e0e2075090c181dcd9f431833a8a9c2665d763e (from 3b58d92f5a449e7d5edf39484465e2ce6acf4874)
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Mon Oct 2 14:35:35 2006 -0400

    [check-headers.sh] Don't use '\>' regexp syntax

diff --git a/src/check-headers.sh b/src/check-headers.sh
index 1e8d590..91a52a0 100755
--- a/src/check-headers.sh
+++ b/src/check-headers.sh
@@ -12,7 +12,7 @@ xargs grep -B 1 '^cairo_.*[ 	]\+(' |
 awk '
 /^--$/ { context=""; public=0; next; }
 /:cairo_.*[ 	]+\(/ { if (!public) {print context; print; print "--";} next; }
-/-cairo_public\>/ {public=1;}
+/-cairo_public[ 	]/ {public=1;}
 { context=$0; }
 ' |
 sed 's/[.]h-/.h:/' |


More information about the cairo-commit mailing list