aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-09-24 21:15:24 -0400
committerGlenn Morris2012-09-24 21:15:24 -0400
commitcca96c97b648ee0bc757b33af5298534d506b602 (patch)
tree37cb8aa1fbe73f6f5975fc562f55abe1949a3364
parentdc4f818b02a02ec6f93977885e2ff75f8210c14b (diff)
downloademacs-cca96c97b648ee0bc757b33af5298534d506b602.tar.gz
emacs-cca96c97b648ee0bc757b33af5298534d506b602.zip
* em-term.el (eshell-term-name): Default to term-term-name. (Bug#12485)
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/eshell/em-term.el5
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 @@
12012-09-25 Glenn Morris <rgm@gnu.org>
2
3 * eshell/em-term.el (eshell-term-name):
4 Default to term-term-name. (Bug#12485)
5
12012-09-24 Fabián Ezequiel Gallina <fgallina@cuca> 62012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2 7
3 * progmodes/python.el: 8 * progmodes/python.el (python-shell-send-buffer): Better handling
4 (python-shell-send-buffer): Better handling of "if __name__ == 9 of "if __name__ == '__main__':" conditionals when sending the buffer.
5 '__main__':" conditionals when sending the buffer.
6 10
72012-09-24 Glenn Morris <rgm@gnu.org> 112012-09-24 Glenn Morris <rgm@gnu.org>
8 12
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."
63 :type '(repeat string) 63 :type '(repeat string)
64 :group 'eshell-term) 64 :group 'eshell-term)
65 65
66(defcustom eshell-term-name "eterm" 66;; If you change this from term-term-name, you need to ensure that the
67;; value you choose exists in the system's terminfo database. (Bug#12485)
68(defcustom eshell-term-name term-term-name
67 "Name to use for the TERM variable when running visual commands. 69 "Name to use for the TERM variable when running visual commands.
68See `term-term-name' in term.el for more information on how this is 70See `term-term-name' in term.el for more information on how this is
69used." 71used."
72 :version "24.3" ; eterm -> term-term-name = eterm-color
70 :type 'string 73 :type 'string
71 :group 'eshell-term) 74 :group 'eshell-term)
72 75