| View previous topic :: View next topic |
| Author |
Message |
Tipi Voice
Joined: 14 Dec 2005 Posts: 9
|
Posted: Thu Feb 23, 2006 1:08 pm Post subject: nicks with special characters |
|
|
I have a process that creates a timer:
| Code: |
proc scheck1 {n uh h chan} {
timer 5 "scheck2 $n $uh"
}
|
When that timer expires, it runs a second process:
| Code: |
proc scheck2 {n2 uh2} {
|
works well except in the nick has special characters such as { or [
Can someone point me in a direction to fix this?
Thanks,
Tipi |
|
| Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Thu Feb 23, 2006 1:29 pm Post subject: |
|
|
Use
| Code: | | timer 5 [list scheck2 $n $uh] |
Read in the Tcl faq forum about this. _________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
| Back to top |
|
 |
Tipi Voice
Joined: 14 Dec 2005 Posts: 9
|
Posted: Thu Feb 23, 2006 1:43 pm Post subject: |
|
|
| thank you |
|
| Back to top |
|
 |
|