From 1f4e919cb2fc81976346aacbef4126753c423724 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 16 Jun 2021 08:34:32 -0700 Subject: [PATCH] * lisp/simple.el (save-interprogram-paste-before-kill): Fix type. ; Would not "integer" be better than "number", in type and docs? --- lisp/simple.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index fdaeb6ac22d..71db7ffe5d1 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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") -- 2.39.5