Error processing request

Parameters

CONTENT_LENGTH0
REQUEST_METHODGET
REQUEST_URI/revision/unset?V=16
QUERY_STRINGV=16
CONTENT_TYPE
DOCUMENT_URI/revision/unset
DOCUMENT_ROOT/var/www/nikit/nikit/nginx/../docroot
SCGI1
SERVER_PROTOCOLHTTP/1.1
HTTPSon
REMOTE_ADDR172.70.100.190
REMOTE_PORT24798
SERVER_PORT4443
SERVER_NAMEwiki.tcl-lang.org
HTTP_HOSTwiki.tcl-lang.org
HTTP_CONNECTIONKeep-Alive
HTTP_ACCEPT_ENCODINGgzip, br
HTTP_X_FORWARDED_FOR18.222.205.211
HTTP_CF_RAY87581194bbb59121-ORD
HTTP_X_FORWARDED_PROTOhttps
HTTP_CF_VISITOR{"scheme":"https"}
HTTP_ACCEPT*/*
HTTP_USER_AGENTclaudebot
HTTP_CF_CONNECTING_IP18.222.205.211
HTTP_CDN_LOOPcloudflare
HTTP_CF_IPCOUNTRYUS

Body


Error

Unknow state transition: LINE -> END

-code

1

-level

0

-errorstack

INNER {returnImm {Unknow state transition: LINE -> END} {}} CALL {my render_wikit unset {'''`[http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%unset]`''', a [Tcl Commands%|%built-in] [Tcl] [command], removes one or more
[variable%|%variables].



** Synopsis **

    :   '''unset''' ?'''-nocomplain'''? ''varName'' ?''varName ...''?



** Documentation **

   [http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%official reference]:   



** Description **

It is an error for the variables to not already exist, the name to be illegal,
etc. This error can be suppressed with the '''`-nocomplain`''' option.

A [trace] on the variable can resurrect it.

[DKF]: In 8.6, `[unset]` is bytecode compiled. (And don't use `catch
{unset foo}`; the operationally-equivalent `unset -nocomplain foo`
generates much better bytecode.)

----

In retrospect, `unset` should have been designed so that it was not an error to

Unsetting a variable will remove all the [trace]s on it.  If there are any `variable unset` traces, they will first be called.

Proc-local variables are implicitly unset when the proc returns.  By using an unset trace, we can do sneaky things:

======
package require lambda 
proc finally {script} {
    set v [lindex [uplevel 1 {info locals}] 0]
    tailcall trace add variable $v unset [lambda args $script]
}

proc test {n cmd} {
    finally {puts "Returning"}
    for {set x 0} {$x < $n} {incr x} {
        puts "$x ... [{*}$cmd]"
    }
}

test 3 {info level}
# 0 ... 1
# 1 ... 1
# 2 ... 1
# Returning
test 3 {expr 1/0}
# Returning
# ERROR: divide by zero
# while evaluating {test 3 {expr 1/0}}
======

** Unset and Tk `-variable` options **

Unsetting a variable that is still bound to an [entry] widget through the `-textvariable` option (for example), strange things may happen (they did in 2002 ...).  Beware if you do this!

Tcl8.6 offers a number of ways to protect against this, which amount to tying the object's lifecycle to the variable.  You can place them both in an object, or use an unset trace on the variable, or interpose a megawidget that binds correctly with [namespace upvar] ...


** Unset and Upvar **

Unsetting an [upvar]-bound variable will also unset all its other bindings (thanks [PYK] for correcting previous text here):
Unsetting an [upvar]-bound variable only breaks the binding - other references to the same variable are not affected.  Of course, [upvar] can replace an `upvar`ed variable without unsetting it first, so you may not need this.
======
----
'''`[http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%unset]`''', a [Tcl} regexp2} CALL {my render unset {'''`[http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%unset]`''', a [Tcl Commands%|%built-in] [Tcl] [command], removes one or more
[variable%|%variables].



** Synopsis **

    :   '''unset''' ?'''-nocomplain'''? ''varName'' ?''varName ...''?



** Documentation **

   [http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%official reference]:   



** Description **

It is an error for the variables to not already exist, the name to be illegal,
etc. This error can be suppressed with the '''`-nocomplain`''' option.

A [trace] on the variable can resurrect it.

[DKF]: In 8.6, `[unset]` is bytecode compiled. (And don't use `catch
{unset foo}`; the operationally-equivalent `unset -nocomplain foo`
generates much better bytecode.)

----

In retrospect, `unset` should have been designed so that it was not an error to

Unsetting a variable will remove all the [trace]s on it.  If there are any `variable unset` traces, they will first be called.

Proc-local variables are implicitly unset when the proc returns.  By using an unset trace, we can do sneaky things:

======
package require lambda 
proc finally {script} {
    set v [lindex [uplevel 1 {info locals}] 0]
    tailcall trace add variable $v unset [lambda args $script]
}

proc test {n cmd} {
    finally {puts "Returning"}
    for {set x 0} {$x < $n} {incr x} {
        puts "$x ... [{*}$cmd]"
    }
}

test 3 {info level}
# 0 ... 1
# 1 ... 1
# 2 ... 1
# Returning
test 3 {expr 1/0}
# Returning
# ERROR: divide by zero
# while evaluating {test 3 {expr 1/0}}
======

** Unset and Tk `-variable` options **

Unsetting a variable that is still bound to an [entry] widget through the `-textvariable` option (for example), strange things may happen (they did in 2002 ...).  Beware if you do this!

Tcl8.6 offers a number of ways to protect against this, which amount to tying the object's lifecycle to the variable.  You can place them both in an object, or use an unset trace on the variable, or interpose a megawidget that binds correctly with [namespace upvar] ...


** Unset and Upvar **

Unsetting an [upvar]-bound variable will also unset all its other bindings (thanks [PYK] for correcting previous text here):
Unsetting an [upvar]-bound variable only breaks the binding - other references to the same variable are not affected.  Of course, [upvar] can replace an `upvar`ed variable without unsetting it first, so you may not need this.
======
----
'''`[http://www.tcl.tk/man/tcl/TclCmd/unset.htm%|%unset]`''', a [Tcl}} CALL {my revision unset} CALL {::oo::Obj2785987 process revision/unset} CALL {::oo::Obj2785985 process}

-errorcode

NONE

-errorinfo

Unknow state transition: LINE -> END
    while executing
"error $msg"
    (class "::Wiki" method "render_wikit" line 6)
    invoked from within
"my render_$default_markup $N $C $mkup_rendering_engine"
    (class "::Wiki" method "render" line 8)
    invoked from within
"my render $name $C"
    (class "::Wiki" method "revision" line 31)
    invoked from within
"my revision $page"
    (class "::Wiki" method "process" line 56)
    invoked from within
"$server process [string trim $uri /]"

-errorline

4