diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-25 01:25:47 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-25 04:15:22 +0200 |
commit | dc9d0da3c2c85de0a1a15576268db98b42162803 (patch) | |
tree | 41e6733d550f32ed92620b638d066f92a4843685 /lisp/simple.el | |
parent | f1071bf08e246d0820edfb66163acb65e90d9482 (diff) | |
download | emacs-dc9d0da3c2c85de0a1a15576268db98b42162803.tar.gz |
Set :type of suggest-key-bindings to natnum
* lisp/simple.el (suggest-key-bindings): Set :type to
natnum. (Bug#15809)
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 298e3ea5ee0..dd480396f6d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2144,7 +2144,7 @@ Equivalent key-bindings are also shown in the completion list of \\[execute-extended-command] for all commands that have them." :group 'keyboard :type '(choice (const :tag "off" nil) - (integer :tag "time" 2) + (natnum :tag "time" 2) (other :tag "on"))) (defcustom extended-command-suggest-shorter t |