summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2014-10-12 21:58:14 +0300
committerChristian Linhart <chris@demorecorder.com>2015-03-15 12:22:32 +0100
commitf9f925107e37e0c9a0ed8220ee3a23f584e3b2ec (patch)
tree261be55826f56413eb68c9a23152bf3e87172fad
parent17f9bda6c291a8b9ccc98b22c241b64880b80621 (diff)
c_client.py: don't add /* <name> */ before references to 'S'
The name can be understood from the type of S already. For examples, look for 'S->' in xkb.c or xinput.c. Signed-off-by: Ran Benita <ran234@gmail.com> Reviewed-by: Christian Linhart <chris@demorecorder.com> Reviewed-by: RĂ©mi Cardona <remi@gentoo.org>
-rw-r--r--src/c_client.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/c_client.py b/src/c_client.py
index 7cc3575..78cc744 100644
--- a/src/c_client.py
+++ b/src/c_client.py
@@ -1833,8 +1833,7 @@ def _c_accessors_list(self, field):
fields.update(_c_helper_field_mapping(toplevel_switch, [('S', '->', toplevel_switch)], flat=True))
# initialize prefix for everything "below" S
- prefix_str = '/* %s */ S' % toplevel_switch.name[-1]
- prefix = [(prefix_str, '->', toplevel_switch)]
+ prefix = [('S', '->', toplevel_switch)]
# look for fields in the remaining containers
for p in parents[2:] + [self]:
@@ -2724,8 +2723,7 @@ def _man_request(self, name, void, aux):
fields.update(_c_helper_field_mapping(toplevel_switch, [('S', '->', toplevel_switch)], flat=True))
# initialize prefix for everything "below" S
- prefix_str = '/* %s */ S' % toplevel_switch.name[-1]
- prefix = [(prefix_str, '->', toplevel_switch)]
+ prefix = [('S', '->', toplevel_switch)]
# look for fields in the remaining containers
for p in parents[2:] + [self]: