diff options
| -rw-r--r-- | kconfiglib.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index ecf9726..54d35e5 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -2603,10 +2603,9 @@ class Kconfig(object): while 1: match = _name_special_search(s, i) - if match.group() == "$(": - s, i = self._expand_macro(s, match.start(), ()) - else: + if match.group() != "$(": return (s, match.start()) + s, i = self._expand_macro(s, match.start(), ()) def _expand_str(self, s, i): # Expands a quoted string starting at index 'i' in 's'. Handles both |
