Skip to content

Commit

Permalink
* lisp/simple.el (save-interprogram-paste-before-kill): Fix type.
Browse files Browse the repository at this point in the history
; Would not "integer" be better than "number", in type and docs?
  • Loading branch information
rgmorris committed Jun 16, 2021
1 parent 706e186 commit 1f4e919
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lisp/simple.el
Expand Up @@ -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")

Expand Down

0 comments on commit 1f4e919

Please sign in to comment.