-EMISSINGPATCHDESCRIPTION
Why is this required? Bug fix? New feature? ... please add some words here. Thomas On 28/01/2020 18.51, Paolo Bonzini wrote: > From: Marc-André Lureau <marcandre.lur...@redhat.com> > > Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > --- > scripts/minikconf.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/minikconf.py b/scripts/minikconf.py > index 40ae1989e1..febd9a479f 100644 > --- 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.isalpha(): > + elif self.tok.isalnum(): > # identifier > while self.src[self.cursor].isalnum() or self.src[self.cursor] > == '_': > self.cursor += 1 >