[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 001/142] minikconf: accept alnum identifiers
From: |
Paolo Bonzini |
Subject: |
[PATCH 001/142] minikconf: accept alnum identifiers |
Date: |
Tue, 28 Jan 2020 18:51:21 +0100 |
From: Marc-André Lureau <address@hidden>
Signed-off-by: Marc-André Lureau <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
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
--
2.21.0
- [RFC PATCH v4 000/142] Proof of concept for Meson integration, Paolo Bonzini, 2020/01/28
- [PATCH 002/142] optionrom: simplify Makefile, Paolo Bonzini, 2020/01/28
- [PATCH 003/142] pc-bios/s390-ccw: simplify Makefile, Paolo Bonzini, 2020/01/28
- [PATCH 004/142] build-sys hack: ensure target directory is there, Paolo Bonzini, 2020/01/28
- [PATCH 001/142] minikconf: accept alnum identifiers,
Paolo Bonzini <=
- [PATCH 005/142] configure: do not include $(...) variables in config-host.mak, Paolo Bonzini, 2020/01/28
- [PATCH 006/142] configure: expand path variables for meson configure, Paolo Bonzini, 2020/01/28
- [PATCH 008/142] configure: generate Meson cross file, Paolo Bonzini, 2020/01/28
- [PATCH 010/142] meson: enable pie, Paolo Bonzini, 2020/01/28
- [PATCH 009/142] build-sys: add meson submodule, Paolo Bonzini, 2020/01/28