diff options
author | Glenn Morris <rgm@gnu.org> | 2012-09-24 21:15:24 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-09-24 21:15:24 -0400 |
commit | cca96c97b648ee0bc757b33af5298534d506b602 (patch) | |
tree | 37cb8aa1fbe73f6f5975fc562f55abe1949a3364 | |
parent | dc4f818b02a02ec6f93977885e2ff75f8210c14b (diff) | |
download | emacs-cca96c97b648ee0bc757b33af5298534d506b602.tar.gz |
* em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485)
-rw-r--r-- | lisp/ChangeLog | 10 | ||||
-rw-r--r-- | lisp/eshell/em-term.el | 5 |
2 files changed, 11 insertions, 4 deletions
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 <rgm@gnu.org> + + * eshell/em-term.el (eshell-term-name): + Default to term-term-name. (Bug#12485) + 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca> - * 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 <rgm@gnu.org> 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) |