diff options
author | Kenichi Handa <handa@gnu.org> | 2012-09-30 23:39:46 +0900 |
---|---|---|
committer | Kenichi Handa <handa@gnu.org> | 2012-09-30 23:39:46 +0900 |
commit | c194970e15b6d6efa07697679a25dfab3aa76442 (patch) | |
tree | 49aec8be9d2dcc74ad3c81f562e48308d8e27b75 /lisp/eshell/em-term.el | |
parent | 95402d5faa114a311cabfb8c64cf22a93787a066 (diff) | |
parent | dd946752ab8810149a66a3eff469eb128709972d (diff) | |
download | emacs-c194970e15b6d6efa07697679a25dfab3aa76442.tar.gz |
merge trunk
Diffstat (limited to 'lisp/eshell/em-term.el')
-rw-r--r-- | lisp/eshell/em-term.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el index 37fa939cc10..ef59f6d1d35 100644 --- a/lisp/eshell/em-term.el +++ b/lisp/eshell/em-term.el @@ -63,10 +63,13 @@ which commands are considered visual in nature." :type '(repeat string) :group 'eshell-term) -(defcustom eshell-term-name "eterm" +;; If you change this from term-term-name, you need to ensure that the +;; value you choose exists in the system's terminfo database. (Bug#12485) +(defcustom eshell-term-name term-term-name "Name to use for the TERM variable when running visual commands. See `term-term-name' in term.el for more information on how this is used." + :version "24.3" ; eterm -> term-term-name = eterm-color :type 'string :group 'eshell-term) |