Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b50690cc
Commit
b50690cc
authored
Feb 08, 2008
by
Glenn Morris
Browse files
(selection-coding-system): Make it a defcustom, and add the properties
from cus-start.el. Bump :version.
parent
866a8ce4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/select.el
lisp/select.el
+9
-2
No files found.
lisp/ChangeLog
View file @
b50690cc
...
...
@@ -21,6 +21,11 @@
2008-02-08 Glenn Morris <rgm@gnu.org>
* cus-start.el (selection-coding-system): Remove, since it's now
defined in select.el rather than in xselect.c.
* select.el (selection-coding-system): Make it a defcustom, and
add the properties from cus-start.el. Bump :version.
* custom.el (custom-theme-set-variables): Sort symbols that are
dependencies before symbols that depend on them.
(custom-enabled-themes): Set after custom-theme-directory.
...
...
lisp/select.el
View file @
b50690cc
...
...
@@ -28,7 +28,7 @@
;;; Code:
(
def
var
selection-coding-system
nil
(
def
custom
selection-coding-system
nil
"Coding system for communicating with other X clients.
When sending text via selection and clipboard, if the target
...
...
@@ -50,7 +50,14 @@ proper coding system is used according to the data-type as above.
See also the documentation of the variable `x-select-request-type' how
to control which data-type to request for receiving text.
The default value is nil."
)
The default value is nil."
:type
'coding-system
:group
'mule
;; Default was compound-text-with-extensions in 22.x (pre-unicode).
:version
"23.1"
:set
(
lambda
(
symbol
value
)
(
set-selection-coding-system
value
)
(
set
symbol
value
)))
(
defvar
next-selection-coding-system
nil
"Coding system for the next communication with other X clients.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment