aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2025-03-15 09:22:51 -0400
committerEli Zaretskii2025-03-15 09:22:51 -0400
commit9e670088c70f1606d0bd089017bdba960eda87e1 (patch)
treea749f57f6fe2610874b92312ba33223b2113327a /doc
parent515e242c3dc6155bf728aac396d0cc32d14dbbf9 (diff)
parent1a8fbf69e3378996e633cf299b6a2d0716722d86 (diff)
downloademacs-9e670088c70f1606d0bd089017bdba960eda87e1.tar.gz
emacs-9e670088c70f1606d0bd089017bdba960eda87e1.zip
Merge from origin/emacs-30
1a8fbf69e33 Fix 'whitespace-mode' in CJK locales 01c03043e6e ; Improve documentation of 'gui-get-selection' use on X
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/frames.texi10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 32d6ffc48ed..8c843952c29 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -4161,8 +4161,14 @@ programs. It takes two optional arguments, @var{type} and
4161 4161
4162The @var{data-type} argument specifies the form of data conversion to 4162The @var{data-type} argument specifies the form of data conversion to
4163use, to convert the raw data obtained from another program into Lisp 4163use, to convert the raw data obtained from another program into Lisp
4164data. @xref{X Selections}, for an enumeration of data types valid under 4164data. It defaults to @code{STRING}. @xref{X Selections}, for an
4165X, and @pxref{Other Selections} for those elsewhere. 4165enumeration of data types valid on X, and @pxref{Other Selections} for
4166those elsewhere. On X Window system, we recommend to always specify a
4167particular @var{data-type}, especially if the selection is expected to
4168be non-ASCII text (in which case Lisp programs should prefer
4169@code{UTF8_STRING} as the value of @var{data-type}). This is because
4170the default @var{data-type} value, @code{STRING}, can only support
4171Latin-1 text, which in many cases is nowadays inadequate.
4166@end defun 4172@end defun
4167 4173
4168@defopt selection-coding-system 4174@defopt selection-coding-system