# -*-shell-script-*-
# JLdL 07Jun04.
#
# Set up the mode of operation of the terminal.
#
# Set up an initial standard terminal size.
stty rows 24
stty columns 80
#
# Enable start/stop flow control.
stty ixon
stty ixoff
#
# Set up the basic editing keystrokes.
stty erase "^?"
stty kill  "^U"
#
# Set up the basic control signals.
stty intr  "^C"
stty eof   "^D"
stty susp  "^Z"
#
# Allow the reception of messages at the terminal.
if ( $?prompt ) then
    mesg y
endif
#
# Detect and record the actual size of the terminal.
if ( $?TERM ) then
    eval resize >& /dev/null
endif
