From: Glenn Morris Date: Tue, 25 Sep 2012 01:15:24 +0000 (-0400) Subject: * em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485) X-Git-Tag: emacs-24.2.90~244^2~95 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cca96c97b648ee0bc757b33af5298534d506b602;p=emacs.git * em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5539ee41b26..a400677be1d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,8 +1,12 @@ +2012-09-25 Glenn Morris + + * eshell/em-term.el (eshell-term-name): + Default to term-term-name. (Bug#12485) + 2012-09-24 Fabián Ezequiel Gallina - * progmodes/python.el: - (python-shell-send-buffer): Better handling of "if __name__ == - '__main__':" conditionals when sending the buffer. + * progmodes/python.el (python-shell-send-buffer): Better handling + of "if __name__ == '__main__':" conditionals when sending the buffer. 2012-09-24 Glenn Morris 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)