emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110188: * em-term.el (eshell-term-na


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110188: * em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485)
Date: Mon, 24 Sep 2012 21:15:24 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110188
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-09-24 21:15:24 -0400
message:
  * em-term.el (eshell-term-name): Default to term-term-name.  (Bug#12485)
modified:
  lisp/ChangeLog
  lisp/eshell/em-term.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-09-24 23:15:40 +0000
+++ b/lisp/ChangeLog    2012-09-25 01:15:24 +0000
@@ -1,8 +1,12 @@
+2012-09-25  Glenn Morris  <address@hidden>
+
+       * eshell/em-term.el (eshell-term-name):
+       Default to term-term-name.  (Bug#12485)
+
 2012-09-24  Fabián Ezequiel Gallina  <address@hidden>
 
-       * 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  <address@hidden>
 

=== modified file 'lisp/eshell/em-term.el'
--- a/lisp/eshell/em-term.el    2012-06-27 07:08:06 +0000
+++ b/lisp/eshell/em-term.el    2012-09-25 01:15:24 +0000
@@ -63,10 +63,13 @@
   :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)
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]