]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-insert, auto-insert-query): Use `other'
authorAndreas Schwab <schwab@suse.de>
Wed, 24 Jun 1998 08:48:01 +0000 (08:48 +0000)
committerAndreas Schwab <schwab@suse.de>
Wed, 24 Jun 1998 08:48:01 +0000 (08:48 +0000)
widget type.

lisp/autoinsert.el

index db51fe7a13cbbf0c7984a53f4e1be8482207ab33..8a72275ae5ac2b579a980330e332a0f40cf156e3 100644 (file)
@@ -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? "