diff options
| author | Eli Zaretskii | 2025-03-15 09:22:51 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2025-03-15 09:22:51 -0400 |
| commit | 9e670088c70f1606d0bd089017bdba960eda87e1 (patch) | |
| tree | a749f57f6fe2610874b92312ba33223b2113327a /doc | |
| parent | 515e242c3dc6155bf728aac396d0cc32d14dbbf9 (diff) | |
| parent | 1a8fbf69e3378996e633cf299b6a2d0716722d86 (diff) | |
| download | emacs-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.texi | 10 |
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 | ||
| 4162 | The @var{data-type} argument specifies the form of data conversion to | 4162 | The @var{data-type} argument specifies the form of data conversion to |
| 4163 | use, to convert the raw data obtained from another program into Lisp | 4163 | use, to convert the raw data obtained from another program into Lisp |
| 4164 | data. @xref{X Selections}, for an enumeration of data types valid under | 4164 | data. It defaults to @code{STRING}. @xref{X Selections}, for an |
| 4165 | X, and @pxref{Other Selections} for those elsewhere. | 4165 | enumeration of data types valid on X, and @pxref{Other Selections} for |
| 4166 | those elsewhere. On X Window system, we recommend to always specify a | ||
| 4167 | particular @var{data-type}, especially if the selection is expected to | ||
| 4168 | be non-ASCII text (in which case Lisp programs should prefer | ||
| 4169 | @code{UTF8_STRING} as the value of @var{data-type}). This is because | ||
| 4170 | the default @var{data-type} value, @code{STRING}, can only support | ||
| 4171 | Latin-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 |