summaryrefslogtreecommitdiff
path: root/lisp/shell.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-09-18 09:20:28 +0000
committerAndreas Schwab <schwab@suse.de>1998-09-18 09:20:28 +0000
commit6f0984e52cb3a689c7a17c1789b92fdd756e1ce4 (patch)
treee17a9355d530c366ce939cd0cefd63ce43b5de82 /lisp/shell.el
parent334cc3b71bb3c203fe48eba606d60438dcf92fd4 (diff)
downloademacs-6f0984e52cb3a689c7a17c1789b92fdd756e1ce4.tar.gz
(shell-input-autoexpand): Fix customize type.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index 5b3c09cb413..a751aa52e93 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -266,7 +266,10 @@ into the buffer's input ring. See also `comint-magic-space' and
This variable supplies a default for `comint-input-autoexpand',
for Shell mode only."
- :type '(choice (const nil) (const input) (const history))
+ :type '(choice (const :tag "off" nil)
+ (const input)
+ (const history)
+ (const :tag "on" t))
:type 'shell)
(defvar shell-dirstack nil