SETUP COMMANDS

1.- USER:
        Defines a group of commands applicable to a specific user.
       
        USER = "<user name>"
        <user name> is a string of up to 64 characters in length

        Comments: OK.


2.- WINDOW:
        Defines the position, size and status of the windows.
        
        WINDOW = <window>,x,y,dx,dy,<status>
        <window>: TEXT, GRAPHICS, WORK, DEBUG, NAMES, SHAPES
        x,y,dx,dy: default value 0
        <status>: VISIBLE,NOTVISIBLE

        Comments: Check the position and size parameters, particularly
        when default values are not given for all the parameters.

 
3.- DEACTIVATEMENU:
        Deactivates an option from a menu.

        DEACTIVATEMENU = <menu>, option
        <menu>: INFO, AREA, SYSTEM, QUIT
        option: number of the option from <menu> that is deactivated. If option is 
                zero, the whole menu with all its options will be
                deactivated.

        Comments: OK.

 
4.- STARTUP:
        Defines a file that will be executed upon starting up the application.
        
        STARTUP = "<filename>"
        <filename>: Name of the file. The starting directory is the one where the
                   application is.

        Comments: OK.


5.- REDEFPRIM:
        Redefinition of primitives.
        
        REDEFPRIM = "<old name>","<new name>"
        <old name>: Primitive.
        <new name>: Not primitive.

        Comments: OK.


6.- REDEFERROR:     
        Redefinition of error messages.
        
        REDEFERROR = number,"<message>"
        number: Number corresponding to the error message to be redefined.
        <message>: New message string. It may contain the characters
                   ^ and @. These will be replaced, in that order, by the variables that arrive
                   to the error message.

        Comments: OK but check the correct rank and number.


7.- MNODES:
        Memory assigned to the nodal space.

        MNODES = number
        number: amount of memory assigned.
        
        Comments: NOT IMPLEMENTED.


8.- MTEXT:
        Memory assigned to the TEXT window.

        MTEXT = number
        number: amount of memory assigned.
        
        Comments: NOT IMPLEMENTED.


9.- MGRAPHICS:
        Memory assigned to the GRAPHICS window.

        MGRAPHICS = number
        number: amount of memory assigned.
        
        Comments: NOT IMPLEMENTED.


10.- MWORK:
        Memory assigned to the work window.

        MWORK = number
        number: amount of memory assigned.
        
        Comments: NOT IMPLEMENTED.

