From 9e0b3214cd24a8e4c2fc251b4cfc251476016fbd Mon Sep 17 00:00:00 2001 Message-Id: <9e0b3214cd24a8e4c2fc251b4cfc251476016fbd.1717850212.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 10 Jun 2002 01:43:37 +0000 Subject: [PATCH] Really do not report unused monitors Organization: Straylight/Edgeware From: Ian Jackson --- ledmodule.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledmodule.tcl b/ledmodule.tcl index 1d18fe3..f3231de 100644 --- a/ledmodule.tcl +++ b/ledmodule.tcl @@ -553,7 +553,7 @@ def_ucmd who { upvar #0 deviceset/$d dd set m $dd(monname) upvar #0 monitor/$m mm - if {![info exists mm(group)]} continue + if {![info exists mm(chans)]} continue lappend r "sending $m to [dset_visibledest $d]" } ucmdr [join $r "\n"] {} -- [mdw]