X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fcharconv.tcl;h=5732f8ddac6bea05a6f3b90ad79b0d34edebd27d;hb=2dbe1df5facb92bac31b5da0ca2e2e8ee6f9b358;hp=dc494b1229bb32091a1f9a0578035b620205f4e5;hpb=afae1117609712743c1109597d080a53a8dac5d4;p=yaz-moved-to-github.git diff --git a/src/charconv.tcl b/src/charconv.tcl index dc494b1..5732f8d 100755 --- a/src/charconv.tcl +++ b/src/charconv.tcl @@ -1,8 +1,5 @@ -#!/bin/sh -# the next line restarts using tclsh \ -if [ -f /usr/local/bin/tclsh8.4 ]; then exec tclsh8.4 "$0" "$@"; else exec tclsh "$0" "$@"; fi -# -# $Id: charconv.tcl,v 1.19 2007-09-17 19:18:27 adam Exp $ +#!/usr/bin/tclsh +# $Id: charconv.tcl,v 1.21 2008-01-06 13:02:48 adam Exp $ proc usage {} { puts {charconv.tcl: [-p prefix] [-s split] [-o ofile] file ... } @@ -147,7 +144,18 @@ proc ins_trie_r {from to combining codename this} { set trie($this,type) f } if {$trie($this,type) == "f"} { - lappend trie($this,content) [list $from $to $combining $codename] + set dup 0 + if {[info exists trie($this,content)]} { + foreach e $trie($this,content) { + set efrom [lindex $e 0] + if { $efrom == $from } { + set dup 1 + } + } + } + if { $dup == 0 } { + lappend trie($this,content) [list $from $to $combining $codename] + } # split ? if {[llength $trie($this,content)] > $trie(split)} {