* lisp/simple.el (save-interprogram-paste-before-kill): Fix type.

; Would not "integer" be better than "number", in type and docs?
This commit is contained in:
Glenn Morris 2021-06-16 08:34:32 -07:00
parent 706e186581
commit 1f4e919cb2

View file

@ -5047,8 +5047,9 @@ The value of this variable can also be a number, in which case the
clipboard data is only saved to the `kill-ring' if it's shorter
(in characters) than that number. Any other non-nil value will save
the clipboard data unconditionally."
:type '(choice (const :tag "Always" t)
number)
:type '(choice (const nil)
number
(other :tag "Always" t))
:group 'killing
:version "23.2")