Reply To: Removing a }

Homepage Clovertech Forums Read Only Archives Cloverleaf Cloverleaf Removing a } Reply To: Removing a }

#59136
Charlie Bursell
Participant

    Boy, I don’t know how many times to state that *ALL* xlate upvar variables except xlateId are *LISTS*

    I can’t tell, but I assume there are spaces between values in replList

    Also, I guess we do need to escape the } to keep Tcl from getting confused

    Works for me.

    proc xlt_name {} {

      upvar xlateId       xlateId

    xlateInList   xlateInList

    xlateInTypes  xlateInTypes

    xlateInVals   xlateInVals

    xlateOutList  xlateOutList

    xlateOutTypes xlateOutTypes

    xlateOutVals  xlateOutVals

          set replList

            set name [lindex $xlateInVals 0]

            set xlateOutVals

        ]

               

        }