]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (save-interprogram-paste-before-kill): Fix type.
authorGlenn Morris <rgm@gnu.org>
Wed, 16 Jun 2021 15:34:32 +0000 (08:34 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 16 Jun 2021 15:34:32 +0000 (08:34 -0700)
; Would not "integer" be better than "number", in type and docs?

lisp/simple.el

index fdaeb6ac22df28e7cbb2e0784d016201d0b011f5..71db7ffe5d1064706a722c4ea62e5b7fd1d962e5 100644 (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")