diff options
| author | Eli Zaretskii | 2024-04-29 15:32:12 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-04-29 15:32:12 +0300 |
| commit | f6ae5939b950bdec86471b02e81d1b3827546a2d (patch) | |
| tree | af02f8074ca9e211304841892640abb655a9e0ff /lisp/touch-screen.el | |
| parent | 3be382311fa03b9ec9c571b5e5737ff2d51bc2d3 (diff) | |
| download | emacs-f6ae5939b950bdec86471b02e81d1b3827546a2d.tar.gz emacs-f6ae5939b950bdec86471b02e81d1b3827546a2d.zip | |
; Fix documentation of recent commits.
* lisp/touch-screen.el (touch-screen-handle-point-up): Fix
comments.
* lisp/net/eww.el (eww-check-text-conversion, eww-select-file)
(eww-toggle-checkbox, eww-submit): Doc fixes.
* doc/emacs/input.texi (On-Screen Keyboards): Fix punctuation and
wording.
Diffstat (limited to 'lisp/touch-screen.el')
| -rw-r--r-- | lisp/touch-screen.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/touch-screen.el b/lisp/touch-screen.el index 537780eb708..e44b266a617 100644 --- a/lisp/touch-screen.el +++ b/lisp/touch-screen.el | |||
| @@ -1360,18 +1360,19 @@ is not read-only." | |||
| 1360 | (when command | 1360 | (when command |
| 1361 | (if (or (memq command touch-screen-set-point-commands) | 1361 | (if (or (memq command touch-screen-set-point-commands) |
| 1362 | ;; Users of packages that redefine | 1362 | ;; Users of packages that redefine |
| 1363 | ;; mouse-set-point, or other commands | 1363 | ;; `mouse-set-point', or other commands |
| 1364 | ;; recognized as defining the point, should | 1364 | ;; recognized as defining the point, should |
| 1365 | ;; not find the on screen keyboard | 1365 | ;; not find the on screen keyboard |
| 1366 | ;; inaccessible even with t-s-d-k enabled. | 1366 | ;; inaccessible even with |
| 1367 | ;; `touch-screen-display-keyboard' enabled. | ||
| 1367 | touch-screen-display-keyboard) | 1368 | touch-screen-display-keyboard) |
| 1368 | (if touch-screen-translate-prompt | 1369 | (if touch-screen-translate-prompt |
| 1369 | ;; Forgo displaying the virtual keyboard | 1370 | ;; Forgo displaying the virtual keyboard |
| 1370 | ;; should touch-screen-translate-prompt be | 1371 | ;; should `touch-screen-translate-prompt' be |
| 1371 | ;; set, for then the key won't be delivered | 1372 | ;; set, for then the key won't be delivered |
| 1372 | ;; to the command loop, but rather to a | 1373 | ;; to the command loop, but rather to a |
| 1373 | ;; caller of read-key-sequence such as | 1374 | ;; caller of `read-key-sequence' such as |
| 1374 | ;; describe-key. | 1375 | ;; `describe-key'. |
| 1375 | (throw 'input-event event) | 1376 | (throw 'input-event event) |
| 1376 | (if (and (or (not buffer-read-only) | 1377 | (if (and (or (not buffer-read-only) |
| 1377 | ;; Display the on screen | 1378 | ;; Display the on screen |