Mercurial > emacs
changeset 22567:b20af24c6cdd
(auto-insert, auto-insert-query): Use `other'
widget type.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Wed, 24 Jun 1998 08:48:01 +0000 |
parents | a9b9f92d0f4d |
children | 5682c77dce71 |
files | lisp/autoinsert.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/autoinsert.el Wed Jun 24 08:47:03 1998 +0000 +++ b/lisp/autoinsert.el Wed Jun 24 08:48:01 1998 +0000 @@ -80,16 +80,16 @@ 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? "