projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
706e186
)
* lisp/simple.el (save-interprogram-paste-before-kill): Fix type.
author
Glenn Morris
<rgm@gnu.org>
Wed, 16 Jun 2021 15:34:32 +0000
(08:34 -0700)
committer
Glenn 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
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index fdaeb6ac22df28e7cbb2e0784d016201d0b011f5..71db7ffe5d1064706a722c4ea62e5b7fd1d962e5 100644
(file)
--- 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")