]> git.eshelyaron.com Git - emacs.git/commitdiff
* em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485)
authorGlenn Morris <rgm@gnu.org>
Tue, 25 Sep 2012 01:15:24 +0000 (21:15 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 25 Sep 2012 01:15:24 +0000 (21:15 -0400)
lisp/ChangeLog
lisp/eshell/em-term.el

index 5539ee41b26c75e822886765b60d38a68aeac8f9..a400677be1dc11ec3b569944e77976de653d8b33 100644 (file)
@@ -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>
 
index 37fa939cc1027dad5e2508ed8c2bea6d99d0b99e..ef59f6d1d35dfe219158d4cddceb94eca84531b4 100644 (file)
@@ -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)