(actcmd string)
The actcmd function reactivates a built-in command that has been deactivated before with the delcmd function.
string specifies the name of a built-in command.
If the argument provided is not a valid name of a built-in command, the function returns nil, otherwise T.
Examples
: (delcmd "LINE") ; Disables the LINE command
T
: LINE
Unknown command
: (actcmd "LINE") ; Reactivates the LINE command
T
Related Functions