diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-19 18:37:32 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-19 18:37:32 +0000 |
commit | 64a6709f648f4f6363e1d9d63cc4fc33ff5e0340 (patch) | |
tree | ed0c4263963f76f658f9b93671261d85f5d83279 /lisp/emacs-lisp/comp.el | |
parent | 981cc1575096849f70bc381e096ac5ba274a2c2f (diff) | |
download | emacs-64a6709f648f4f6363e1d9d63cc4fc33ff5e0340.tar.gz emacs-64a6709f648f4f6363e1d9d63cc4fc33ff5e0340.tar.bz2 emacs-64a6709f648f4f6363e1d9d63cc4fc33ff5e0340.zip |
* comp.el (comp-async-jobs-number): Fix customize type.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 00883a35680..1e348c065b5 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -95,7 +95,7 @@ performed at `comp-speed' > 0." (defcustom comp-async-jobs-number 0 "Default number of processes used for async compilation. When zero use half of the CPUs or at least one." - :type 'fixnum + :type 'number :group 'comp) (defcustom comp-async-cu-done-hook nil |