From: Zac Medico Date: Sun, 28 Jan 2007 22:26:55 +0000 (-0000) Subject: translate unicode quotes to ascii ones so we can keep our regex simple (trunk r5795... X-Git-Tag: v2.1.2-r5~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=217ff3127091195e029ee5a78ea3ae76d4f7c5b3;p=portage.git translate unicode quotes to ascii ones so we can keep our regex simple (trunk r5795:5796 and r5803:5804) svn path=/main/branches/2.1.2/; revision=5823 --- diff --git a/bin/check-implicit-pointer-usage.py b/bin/check-implicit-pointer-usage.py index 4afa8f24b..1648dc53d 100755 --- a/bin/check-implicit-pointer-usage.py +++ b/bin/check-implicit-pointer-usage.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # Ripped from HP and updated from Debian +# Update by Gentoo to support unicode output # # Copyright (c) 2004 Hewlett-Packard Development Company, L.P. @@ -16,7 +17,7 @@ import re import sys implicit_pattern = re.compile("([^:]*):(\d+): warning: implicit declaration " - + "of function [`']([^']*)'") + + "of function `([^']*)'") pointer_pattern = re.compile( "([^:]*):(\d+): warning: " + "(" @@ -36,6 +37,8 @@ while True: line = sys.stdin.readline() if line == '': break + # translate unicode open/close quotes to ascii ones + line = line.replace("\xE2\x80\x98", "`").replace("\xE2\x80\x99", "'") m = implicit_pattern.match(line) if m: last_implicit_filename = m.group(1)