From d6e784b546a740266f0e3c06749444bf43cb2b48 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 19 Nov 1997 13:29:13 +0000 Subject: [PATCH] Bug fix: raw-display didn't show indicators correctly. --- www/z39util.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/z39util.tcl b/www/z39util.tcl index 8aa2118..5186f29 100644 --- a/www/z39util.tcl +++ b/www/z39util.tcl @@ -1,5 +1,5 @@ # -# $Id: z39util.tcl,v 1.48 1997/02/24 10:05:20 adam Exp $ +# $Id: z39util.tcl,v 1.49 1997/11/19 13:29:13 adam Exp $ # proc saveState {} { uplevel #0 { @@ -303,7 +303,7 @@ proc display-raw {zset no setNo targetNo} { if {[string index $indicator $i] == " "} { html "-" } else { - html [string index $tag $i] + html [string index $indicator $i] } } } -- 1.7.10.4