comparison lisp/net/tramp.el @ 86224:c24778f26849

* net/tramp.el (tramp-terminal-type): Remove duplicated definition.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 19 Nov 2007 00:25:31 +0000
parents 7d7472ea9c0a
children 4a7e0b7fde4e
comparison
equal deleted inserted replaced
86223:28fe197622a5 86224:c24778f26849
910 :group 'tramp 910 :group 'tramp
911 :type '(repeat (choice 911 :type '(repeat (choice
912 (const :tag "Default Directories" tramp-default-remote-path) 912 (const :tag "Default Directories" tramp-default-remote-path)
913 (string :tag "Directory")))) 913 (string :tag "Directory"))))
914 914
915 (defcustom tramp-terminal-type "dumb"
916 "*Value of TERM environment variable for logging in to remote host.
917 Because Tramp wants to parse the output of the remote shell, it is easily
918 confused by ANSI color escape sequences and suchlike. Often, shell init
919 files conditionalize this setup based on the TERM environment variable."
920 :group 'tramp
921 :type 'string)
922
923 (defcustom tramp-remote-process-environment 915 (defcustom tramp-remote-process-environment
924 `("HISTFILE=$HOME/.tramp_history" "HISTSIZE=1" "LC_TIME=C" 916 `("HISTFILE=$HOME/.tramp_history" "HISTSIZE=1" "LC_TIME=C"
925 ,(concat "TERM=" tramp-terminal-type) 917 ,(concat "TERM=" tramp-terminal-type)
926 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" 918 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH="
927 "autocorrect=" "correct=") 919 "autocorrect=" "correct=")