diff options
| author | Po Lu | 2023-10-25 10:28:54 +0800 |
|---|---|---|
| committer | Po Lu | 2023-10-25 10:28:54 +0800 |
| commit | b36e2b1772680b8fce067c6ea2cdf582af982aaa (patch) | |
| tree | decd569d4fbe105e31065cc285fbb4847159f53b | |
| parent | eff1313c6b7eb7bec217f7b9178857abe8c77356 (diff) | |
| download | emacs-b36e2b1772680b8fce067c6ea2cdf582af982aaa.tar.gz emacs-b36e2b1772680b8fce067c6ea2cdf582af982aaa.zip | |
Documentation copy-edits
* doc/emacs/input.texi (Touchscreens):
* doc/lispref/frames.texi (Other Selections): Insubstantial
copy-edits and improvements to word choice.
| -rw-r--r-- | doc/emacs/input.texi | 11 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 15 |
2 files changed, 17 insertions, 9 deletions
diff --git a/doc/emacs/input.texi b/doc/emacs/input.texi index 5b559652896..0dd7fca41cc 100644 --- a/doc/emacs/input.texi +++ b/doc/emacs/input.texi | |||
| @@ -25,11 +25,12 @@ which is detailed here. | |||
| 25 | 25 | ||
| 26 | Touchscreen input is the manipulation of a frame's contents by the | 26 | Touchscreen input is the manipulation of a frame's contents by the |
| 27 | placement and motion of tools (instanced by fingers and such pointing | 27 | placement and motion of tools (instanced by fingers and such pointing |
| 28 | devices as styluses) on a monitor or computer terminal where a frame | 28 | devices as styluses) on a monitor or computer terminal where it is |
| 29 | is displayed. | 29 | displayed. |
| 30 | 30 | ||
| 31 | Under the X Window System or Android, Emacs detects and maps the | 31 | Under the X Window System or Android, Emacs detects and translates |
| 32 | following sequences of movements (``gestures'') to common actions: | 32 | the following sequences of movements (@dfn{gestures}) to common |
| 33 | actions: | ||
| 33 | 34 | ||
| 34 | @itemize @bullet | 35 | @itemize @bullet |
| 35 | @item | 36 | @item |
| @@ -58,7 +59,7 @@ this gesture. | |||
| 58 | tool on the display and leaving it there awhile before moving it to | 59 | tool on the display and leaving it there awhile before moving it to |
| 59 | another position, will move point to the tool's initial position, and | 60 | another position, will move point to the tool's initial position, and |
| 60 | commence selecting text under the tool as it continues its motion, as | 61 | commence selecting text under the tool as it continues its motion, as |
| 61 | if @code{mouse-1} were to be held down and a mouse moved anologously. | 62 | if @code{mouse-1} were to be held down and a mouse moved analogously. |
| 62 | @xref{Mouse Commands}. | 63 | @xref{Mouse Commands}. |
| 63 | 64 | ||
| 64 | @vindex touch-screen-word-select | 65 | @vindex touch-screen-word-select |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index fb19317cedf..1a7af04b103 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -4670,10 +4670,17 @@ startup (@emph{not} a timestamp), and that for the other is a vector | |||
| 4670 | of available selection data types, as elsewhere. | 4670 | of available selection data types, as elsewhere. |
| 4671 | 4671 | ||
| 4672 | @cindex Android selections | 4672 | @cindex Android selections |
| 4673 | Under Android, @code{gui-get-selection} is capable of returning | 4673 | Much like MS-Windows, Android provides a clipboard but no primary or |
| 4674 | UTF-8 string data of the type @code{STRING}, or image and application | 4674 | secondary selection; @code{gui-set-selection} simulates the primary |
| 4675 | data associated with a MIME type. @code{gui-set-selection} will only | 4675 | selection by saving the value supplied into a variable subsequent |
| 4676 | set string data, as on MS-Windows. | 4676 | calls to @code{gui-get-selection} return. |
| 4677 | |||
| 4678 | From the clipboard, @code{gui-get-selection} is capable of returning | ||
| 4679 | UTF-8 string data of the type @code{STRING}, the @code{TAREGTS} data | ||
| 4680 | type, or image and application data of any MIME type. | ||
| 4681 | @code{gui-set-selection} sets only string data, much as under | ||
| 4682 | MS-Windows, although this data is not affected by the value of | ||
| 4683 | @code{selection-coding-system}. | ||
| 4677 | 4684 | ||
| 4678 | @node Yanking Media | 4685 | @node Yanking Media |
| 4679 | @section Yanking Media | 4686 | @section Yanking Media |