35 lines
880 B
Diff
35 lines
880 B
Diff
From 6452441f2054b4b290c089ce6269889993b95fc1 Mon Sep 17 00:00:00 2001
|
|
From: Werner Fink <werner@suse.de>
|
|
Date: Thu, 7 May 2020 10:20:27 +0200
|
|
Subject: [PATCH] Better support of Midnight Commander (bsc#1170527)
|
|
|
|
Signed-off-by: Werner Fink <werner@suse.de>
|
|
---
|
|
files/etc/csh.cshrc | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git files/etc/csh.cshrc files/etc/csh.cshrc
|
|
index d25cf42..c976e03 100644
|
|
--- a/files/etc/csh.cshrc
|
|
+++ b/files/etc/csh.cshrc
|
|
@@ -50,7 +50,7 @@ unset id
|
|
# Avoid trouble with Emacs shell mode
|
|
#
|
|
if ($?EMACS) then
|
|
- setenv LS_OPTIONS '-N --color=none -T 0';
|
|
+ setenv LS_OPTIONS '-N --color=none -T 0'
|
|
endif
|
|
|
|
#
|
|
@@ -61,7 +61,7 @@ if (! ${?prompt}) goto done
|
|
#
|
|
# Avoid trouble with Emacs shell mode
|
|
#
|
|
-if ($?EMACS) then
|
|
+if ($?EMACS || $?MC_SID) then
|
|
path tset -I -Q
|
|
path stty cooked pass8 dec nl -echo
|
|
endif
|
|
--
|
|
2.25.0
|
|
|