X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=configs%2Fkompare;h=8fff7f82aa8fb038165675126340aa8b723e227a;hb=4da1025f86f1ce64d92ab4e31398bfc894eaca6e;hp=11df5e98b412928d823af2c3bdd7192e31f9b766;hpb=1e8a4455896009fde96b35c0ca102f1b82e9225a;p=linux-2.6.git diff --git a/configs/kompare b/configs/kompare index 11df5e98b..8fff7f82a 100755 --- a/configs/kompare +++ b/configs/kompare @@ -5,17 +5,18 @@ # Marc E. Fiuczynski # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: kompare,v 1.1 2006/11/30 16:41:09 mef Exp $ +# $Id: kompare,v 1.2 2006/11/30 17:07:03 mef Exp $ # import sys, re, os +import kread def process(file): ORDER = [] CONFIGS = {} for line in file.readlines(): iline = line.lower() - iline.strip() + iline = iline.strip() if len(iline)==0: continue firstchar = iline[0] @@ -73,6 +74,9 @@ for key in keys: n = new[key] if n==o and not showall: continue print "%6s -> %6s : %s" % (newstate.get(o,o),newstate.get(n,n),key) + if not showall: continue + helptxt=kread.gethelp(key) + if helptxt<>'':print helptxt # not sure we care about what options have been removed # from from.config file @@ -85,3 +89,4 @@ for key in keys: if n == -1 and not showall: print "%c -> %c : %s" % (oldstate[o],oldstate[n],key) +