aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-06-02 11:26:38 -0700
committerGlenn Morris2013-06-02 11:26:38 -0700
commita2d98946738ffd42f90b3f54d2a32be9d7b6429e (patch)
treec910e73518237503ff39efe631c719207ac37201
parent6b7a9e0eb195db4f7a0b48467eb9860d04d92486 (diff)
downloademacs-a2d98946738ffd42f90b3f54d2a32be9d7b6429e.tar.gz
emacs-a2d98946738ffd42f90b3f54d2a32be9d7b6429e.zip
* lisp/eshell/em-term.el: New defcustoms need :version tags.
-rw-r--r--lisp/eshell/em-term.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el
index 7875fbc9c80..340cfa7006c 100644
--- a/lisp/eshell/em-term.el
+++ b/lisp/eshell/em-term.el
@@ -79,7 +79,9 @@ visual fashion. A likely entry is
79 79
80because git shows logs and diffs using a pager by default." 80because git shows logs and diffs using a pager by default."
81 :type '(repeat (cons (string :tag "Command") 81 :type '(repeat (cons (string :tag "Command")
82 (repeat (string :tag "Subcommand"))))) 82 (repeat (string :tag "Subcommand"))))
83 :version "24.4"
84 :group 'eshell-term)
83 85
84(defcustom eshell-visual-options 86(defcustom eshell-visual-options
85 nil 87 nil
@@ -96,7 +98,9 @@ fashion. For example, a sensible entry would be
96because \"git <command> --help\" shows the command's 98because \"git <command> --help\" shows the command's
97documentation with a pager." 99documentation with a pager."
98 :type '(repeat (cons (string :tag "Command") 100 :type '(repeat (cons (string :tag "Command")
99 (repeat (string :tag "Option"))))) 101 (repeat (string :tag "Option"))))
102 :version "24.4"
103 :group 'eshell-term)
100 104
101;; If you change this from term-term-name, you need to ensure that the 105;; If you change this from term-term-name, you need to ensure that the
102;; value you choose exists in the system's terminfo database. (Bug#12485) 106;; value you choose exists in the system's terminfo database. (Bug#12485)