# $Id: root.profile,v 1.1.1.2 1999/05/22 00:15:04 danw Exp $

# Set the interrupt character to Ctrl-c and do clean backspacing.
if [ -t 0 ]
then
	stty intr '^C' echoe 
fi

# Set the TERM environment variable
if [ -d /usr/lib/terminfo ]
then
	eval `tset -s -Q`
fi

# save tty state in a file where wsh can find it
if [ ! -f $HOME/.wshttymode -a -t 0 ]
then
    stty -g > $HOME/.wshttymode
fi

#
# Athena tweaks
#
PATH=/srvd/patch:/usr/athena/bin:/etc/athena:/bin/athena:/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/etc:/usr/athena/etc:/usr/etc:/usr/bin/X11
export PATH

# Default man pager is ul -b | more -s -f.  Remove the ul -b part
# to work around a bug where pager input is read in line mode.
MANPAGER="more -s -f"
export MANPAGER
