comparison lisp/emacs-lisp/copyright.el @ 22580:a191ee97be00

(copyright-query): Use `other' widget type.
author Andreas Schwab <schwab@suse.de>
date Wed, 24 Jun 1998 09:06:56 +0000
parents 14ad51433254
children 8d2bb5d1416a
comparison
equal deleted inserted replaced
22579:d0ad271c7774 22580:a191ee97be00
55 (defcustom copyright-query 'function 55 (defcustom copyright-query 'function
56 "*If non-`nil', ask user before changing copyright. 56 "*If non-`nil', ask user before changing copyright.
57 When this is `function', only ask when called non-interactively." 57 When this is `function', only ask when called non-interactively."
58 :group 'copyright 58 :group 'copyright
59 :type '(choice (const :tag "Do not ask") 59 :type '(choice (const :tag "Do not ask")
60 (const :tag "Ask" t) 60 (const :tag "Ask unless interactive" function)
61 (const :tag "Ask unless interactive" function))) 61 (other :tag "Ask" t)))
62 62
63 63
64 (defconst copyright-current-year (substring (current-time-string) -4) 64 (defconst copyright-current-year (substring (current-time-string) -4)
65 "String representing the current year.") 65 "String representing the current year.")
66 66