if autort==1 then
Note(Send(''))
end
if (GetVariable("autort") == "1") then
SetVariable("autort", 0)
SaveState()
Note("Auto re typing off.")
return
end
if (GetVariable("autort") == "0") then
SetVariable("autort", 1)
SaveState()
Note("Auto re typing on.")
return
end
if(c==nil) then
Note("Sorry, but either auto retyping is currently disabled, or no command has been entered. Please enable auto retyping to paste the last command entered.")
else
Execute("tts_interrupt "..c)
PasteCommand(c)
return
end