summaryrefslogtreecommitdiff
path: root/etc/ksh.kshrc
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>2002-12-08 22:40:46 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>2002-12-08 22:40:46 +0000
commitdf2441f77a9130d784fdeba12e6c2c65586c4630 (patch)
treecf354eeddda12d0c9ab7284511cac8ae5227f691 /etc/ksh.kshrc
parent135c44e490a553513e63744fb3605ecb732d0516 (diff)
Remove special case code for sun/xterm that faked a DISPLAY and
set the erase character to something other than probably desired. 'I don't object' millert@
Diffstat (limited to 'etc/ksh.kshrc')
-rw-r--r--etc/ksh.kshrc26
1 files changed, 1 insertions, 25 deletions
diff --git a/etc/ksh.kshrc b/etc/ksh.kshrc
index d72b2e9c73d..4946f4476cd 100644
--- a/etc/ksh.kshrc
+++ b/etc/ksh.kshrc
@@ -1,5 +1,5 @@
:
-# $OpenBSD: ksh.kshrc,v 1.10 2002/10/16 15:39:10 todd Exp $
+# $OpenBSD: ksh.kshrc,v 1.11 2002/12/08 22:40:45 marc Exp $
#
# NAME:
# ksh.kshrc - global initialization for ksh
@@ -155,30 +155,6 @@ case "$-" in
;;
esac
alias rsize='eval `resize`'
-
- case "$TERM" in
- sun*|xterm*)
- case $tty in
- tty[p-w]*)
- case "$DISPLAY" in
- "")
- DISPLAY="`who | grep $TTY | sed -n 's/.*(\([^:)]*\)[:)].*/\1/p' | sed 's/\([a-zA-Z][^.]*\).*/\1/'`:0"
- ;;
- esac
- ;;
- esac
- case "$DISPLAY" in
- ozen*|:*)
- stty erase "^?"
- ;;
- *)
- stty erase "^h"
- ;;
- esac
- export DISPLAY
- ;;
- esac
-
;;
*) # non-interactive
;;