diff options
author | Glenn Morris <rgm@gnu.org> | 2013-12-28 00:21:33 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-12-28 00:21:33 -0800 |
commit | 9c5a5c77000b452bdf3ee98e366d5ee6df54b5a4 (patch) | |
tree | ef44cc96cd987b6c079fd1533ab9d9b896980758 /lisp/calculator.el | |
parent | 7e99158aac0347f62647618200fc5d90681cd2e9 (diff) | |
download | emacs-9c5a5c77000b452bdf3ee98e366d5ee6df54b5a4.tar.gz |
Every defcustom should specify its type
* apropos.el (apropos-match-face):
* calculator.el (calculator-displayer):
* dabbrev.el (dabbrev-search-these-buffers-only):
* face-remap.el (buffer-face-mode-face):
* simple.el (yank-handled-properties):
* emacs-lisp/testcover.el (testcover-potentially-1value-functions):
* mail/footnote.el (footnote-mode-line-string, footnote-prefix):
* mail/hashcash.el (hashcash-accept-resources, hashcash-program)
(hashcash-double-spend-database):
* progmodes/ruby-mode.el (ruby-deep-indent-paren)
(ruby-deep-indent-paren-style):
* textmodes/flyspell.el (flyspell-auto-correct-binding):
* textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
(rst-toc-insert-number-separator, rst-toc-insert-max-level):
* vc/pcvs-defs.el (cvs-minor-mode-prefix):
* erc/erc-log.el (erc-log-file-coding-system):
* gnus/gnus-sieve.el (gnus-sieve-select-method):
* gnus/gravatar.el (gravatar-automatic-caching, gravatar-cache-ttl)
(gravatar-rating, gravatar-size):
* gnus/message.el (message-minibuffer-local-map):
* gnus/sieve-manage.el (sieve-manage-authenticators)
(sieve-manage-authenticator-alist):
Specify custom types.
* mail/hashcash.el (hashcash-program): Rename from hashcash-path.
Update callers.
Diffstat (limited to 'lisp/calculator.el')
-rw-r--r-- | lisp/calculator.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/calculator.el b/lisp/calculator.el index c4611c12d87..5eb7535b632 100644 --- a/lisp/calculator.el +++ b/lisp/calculator.el @@ -139,6 +139,7 @@ of digits displayed). An exception to the above is the case of the list (std C) where C is a character, in this case the `calculator-standard-displayer' function will be used with this character for a format string." + :type '(choice (function) (string) (list (const std) character) (sexp)) :group 'calculator) (defcustom calculator-displayers |