mirror of https://github.com/ARMmbed/mbed-os.git
Heed filters in macro printing
parent
b384834db5
commit
c3b9cbe3fd
|
@ -74,7 +74,8 @@ if __name__ == '__main__':
|
||||||
print("Macros")
|
print("Macros")
|
||||||
print("------")
|
print("------")
|
||||||
for m in Config.config_macros_to_macros(macros):
|
for m in Config.config_macros_to_macros(macros):
|
||||||
print(m)
|
if any(m.startswith(s) for s in options.prefix):
|
||||||
|
print(m)
|
||||||
|
|
||||||
except KeyboardInterrupt as e:
|
except KeyboardInterrupt as e:
|
||||||
print("\n[CTRL+c] exit")
|
print("\n[CTRL+c] exit")
|
||||||
|
|
Loading…
Reference in New Issue