summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--trunk/src/ekeyword/ChangeLog3
-rwxr-xr-xtrunk/src/ekeyword/ekeyword2
2 files changed, 4 insertions, 1 deletions
diff --git a/trunk/src/ekeyword/ChangeLog b/trunk/src/ekeyword/ChangeLog
index d0fa818..160a964 100644
--- a/trunk/src/ekeyword/ChangeLog
+++ b/trunk/src/ekeyword/ChangeLog
@@ -1,3 +1,6 @@
+07 Jan 2009 Mike Frysinger <vapier@gentoo.org>
+ * Support intended KEYWORDS
+
27 Oct 2005 Aron Griffis <agriffis@gentoo.org>
* Fix handling of comments
* Add support for bare ~ as a synonym for ~all
diff --git a/trunk/src/ekeyword/ekeyword b/trunk/src/ekeyword/ekeyword
index e75ce93..14cc0dc 100755
--- a/trunk/src/ekeyword/ekeyword
+++ b/trunk/src/ekeyword/ekeyword
@@ -40,7 +40,7 @@ for my $f (@ARGV) {
select O;
while (<I>) {
- /^KEYWORDS/ or print, next;
+ /^\s*KEYWORDS=/ or print, next;
# extract the quoted section from KEYWORDS
(my $quoted = $_) =~ s/^.*?["'](.*?)["'].*/$1/s;