[virt-tools-list] [libvirt] [PATCH 21/22] apibuild: Simplify merging of preproc tokens
Radostin Stoyanov
rstoyanov1 at gmail.com
Sat Mar 17 13:48:57 UTC 2018
Signed-off-by: Radostin Stoyanov <rstoyanov1 at gmail.com>
---
docs/apibuild.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/apibuild.py b/docs/apibuild.py
index f9784f9bd..24e0eb505 100755
--- a/docs/apibuild.py
+++ b/docs/apibuild.py
@@ -479,8 +479,8 @@ class CLexer:
# of '#define' we might end up with '#' and 'define'. This
# merges them back together
if self.tokens[0][1] == "#":
- self.tokens[0] = ('preproc', self.tokens[0][1] + self.tokens[1][1])
- self.tokens = self.tokens[:1] + self.tokens[2:]
+ self.tokens[0] = ('preproc', "#" + self.tokens[1][1])
+ del self.tokens[1]
break
l = len(line)
if line[0] == '"' or line[0] == "'":
--
2.14.3
More information about the virt-tools-list
mailing list