summaryrefslogtreecommitdiff
path: root/lisp/autoinsert.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-06-24 08:48:01 +0000
committerAndreas Schwab <schwab@suse.de>1998-06-24 08:48:01 +0000
commit93ed4c4432e65dffa23255e47872984452d4971d (patch)
tree8ae014a6ef0157f6d2c4785a1f1c14b06c2ccd43 /lisp/autoinsert.el
parent75ced08ef781bd9ad0e187b5228ed2958f5eb3e1 (diff)
downloademacs-93ed4c4432e65dffa23255e47872984452d4971d.tar.gz
(auto-insert, auto-insert-query): Use `other'
widget type.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r--lisp/autoinsert.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el
index db51fe7a13c..8a72275ae5a 100644
--- a/lisp/autoinsert.el
+++ b/lisp/autoinsert.el
@@ -80,16 +80,16 @@ when you do (add-hook 'find-file-hooks 'auto-insert).
With \\[auto-insert], this is always treated as if it were `t'."
:type '(choice (const :tag "Insert if possible" t)
(const :tag "Do nothing" nil)
- (const :tag "insert if possible, mark as unmodified."
+ (other :tag "insert if possible, mark as unmodified."
not-modified))
:group 'auto-insert)
(defcustom auto-insert-query 'function
"*If non-`nil', ask user before auto-inserting.
When this is `function', only ask when called non-interactively."
- :type '(choice (const :tag "Ask" t)
- (const :tag "Don't ask" nil)
- (const :tag "Ask if called non-interactively" function))
+ :type '(choice (const :tag "Don't ask" nil)
+ (const :tag "Ask if called non-interactively" function)
+ (other :tag "Ask" t))
:group 'auto-insert)
(defcustom auto-insert-prompt "Perform %s auto-insertion? "