diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-12 17:39:48 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-12 17:39:48 +0200 |
| commit | 5f6380842b5cf951f5205cb27f4306763ff3fdcc (patch) | |
| tree | 671736ef48f0fdb8ae99de7e3b576c2588cc15c4 | |
| parent | 6a476b5e2ef02c6c42fb54f0d1e6cf887009d531 (diff) | |
T_IF nit.
| -rw-r--r-- | kconfiglib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index eac7335..6165225 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -983,10 +983,10 @@ class Config(object): dep_expr = self._parse_expr(tokens, None, line, line_feeder.get_filename(), line_feeder.get_linenr()) + # Add items to the same block self._parse_block(line_feeder, T_ENDIF, parent, _make_and(dep_expr, deps), - visible_if_deps, - block) # Add items to the same block + visible_if_deps, block) elif t0 == T_COMMENT: comment = Comment() |
