aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2013-07-11 09:37:54 +0200
committerLukas Nykryn <lnykryn@redhat.com>2013-07-11 09:37:54 +0200
commit7fca13547c8193667b5be0d79c480b7a25f5a61b (patch)
treeb4d51222fded07e90852e705405213d33f520ef4
parentbedb51dfba66749de204debb3804fd13cd20f80e (diff)
downloadinitscripts-7fca13547c8193667b5be0d79c480b7a25f5a61b.tar
initscripts-7fca13547c8193667b5be0d79c480b7a25f5a61b.tar.gz
initscripts-7fca13547c8193667b5be0d79c480b7a25f5a61b.tar.bz2
initscripts-7fca13547c8193667b5be0d79c480b7a25f5a61b.tar.xz
initscripts-7fca13547c8193667b5be0d79c480b7a25f5a61b.zip
256term.csh: remove quotes around variable (#979796)
-rw-r--r--256term.csh2
1 files changed, 1 insertions, 1 deletions
diff --git a/256term.csh b/256term.csh
index 91547d0f..c3825687 100644
--- a/256term.csh
+++ b/256term.csh
@@ -18,7 +18,7 @@ if ($?TERM && ($local256 || $?SEND_256_COLORS_TO_REMOTE)) then
endsw
if ($?TERMCAP && ($TERM == "screen-256color")) then
- setenv TERMCAP `echo "$TERMCAP" | sed -e 's/Co#8/Co#256/g'`
+ setenv TERMCAP `echo $TERMCAP | sed -e 's/Co#8/Co#256/g'`
endif
endif