+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>
: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)