X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/e04c4857c4c68005c13413a3e89abcbfdd81760c..79045f0874a5ecc87bc0cd03c9d7a09b4c1ae11d:/bash_profile diff --git a/bash_profile b/bash_profile index 3da56a8..f3e1d76 100644 --- a/bash_profile +++ b/bash_profile @@ -105,7 +105,7 @@ export QMAILINJECT=c # --- Find a text editor --- export MDW_EDITOR=ed -for ed in "emacs21 -nw" "emacs -nw" vi pico nano ae; do +for ed in mg "emacs22 -nw" "emacs21 -nw" "emacs -nw" vi pico nano ae; do name=`echo $ed | sed 's/ .*$//'` if __mdw_programp "$name"; then MDW_EDITOR=$ed @@ -121,7 +121,13 @@ umask 002 [ -z "$HOST" ] && export HOST=`hostname` -unset LANG LC_COLLATE +if [ "$DISPLAY" = "" ]; then + : ${LC_CTYPE=${LANG-${LC_ALL-`__mdw_conf console-ctype`}}} +else + LC_CTYPE=`__mdw_conf x-ctype` +fi +unset LANG LC_ALL LC_COLLATE +export LC_CTYPE __mdw_programp distcc && export CCACHE_PREFIX=distcc @@ -146,7 +152,11 @@ export BECOME="--preserve-environment" export PAGER=`type -p less` METAMAIL_PAGER=`type -p less` export LESS="-iqgRh1FX" export LESSOPEN="|lesspipe.sh %s" -export LESSCHARSET=latin1 +case "$LC_CTYPE" in + *utf8*) LESSCHARSET=utf-8 ;; + *) LESSCHARSET=latin1 ;; +esac +export LESSCHARSET # export MAKEFLAGS="-j4" [ "$TMPDIR" ] || eval `tmpdir -b` export TMP=$TMPDIR