projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a284f79
)
minikconf: accept alnum identifiers
author
Marc-André Lureau
<marcandre.lureau@redhat.com>
Sat, 17 Aug 2019 08:05:17 +0000
(12:05 +0400)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Wed, 12 Feb 2020 15:23:02 +0000
(16:23 +0100)
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
scripts/minikconf.py
patch
|
blob
|
history
diff --git
a/scripts/minikconf.py
b/scripts/minikconf.py
index 40ae1989e11f7c186eb9d4396122faa3b3632af8..febd9a479f5f24463004063265f9e8e048e72624 100644
(file)
--- a/
scripts/minikconf.py
+++ b/
scripts/minikconf.py
@@
-645,7
+645,7
@@
class KconfigParser:
self.cursor = self.src.find('\n', self.cursor)
self.val = self.src[start:self.cursor]
return TOK_SOURCE
- elif self.tok.isal
pha
():
+ elif self.tok.isal
num
():
# identifier
while self.src[self.cursor].isalnum() or self.src[self.cursor] == '_':
self.cursor += 1