From a7302a6a03096e1c5839c2a582dd70ddbae2962a Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Mon, 24 Jun 2019 09:29:10 +0200 Subject: menuconfig/guiconfig: Use orig_defaults in symbol info Forgot that they show defaults separately. Use orig_defaults instead of 'defaults' to de-spam it a bit. The direct dependencies are shown above the defaults. --- menuconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'menuconfig.py') diff --git a/menuconfig.py b/menuconfig.py index d334c0f..6afc1c4 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -2641,7 +2641,7 @@ def _defaults_info(sc): s = "Defaults:\n" - for val, cond in sc.defaults: + for val, cond in sc.orig_defaults: s += " - " if isinstance(sc, Symbol): s += _expr_str(val) -- cgit v1.2.3