diff options
| author | Eli Zaretskii | 2018-06-16 13:10:52 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-06-16 13:10:52 +0300 |
| commit | 0a6a2fb1d0b02a5ac442cf6b344e35696aac7eb7 (patch) | |
| tree | b388527691ad118a3dfbfda1937f6115c02eb8ec /doc/lispref/frames.texi | |
| parent | 2461266be1ea68a8c79af61abe850bb5a2c65040 (diff) | |
| download | emacs-0a6a2fb1d0b02a5ac442cf6b344e35696aac7eb7.tar.gz emacs-0a6a2fb1d0b02a5ac442cf6b344e35696aac7eb7.zip | |
Improve documentation of several recent changes
* src/xfaces.c (merge_face_ref): Fix a typo in the commentary.
(evaluate_face_filter, filter_face_ref): Minor copyedits in
the commentary.
* doc/lispref/display.texi (Face Remapping):
* doc/lispref/text.texi (Special Properties): Document the
':filter' face specs and their effects. Document
'face-filters-always-match'.
* doc/emacs/files.texi (Visiting): Document the new
possibility to visit large files literally in response to
question asked by Emacs.
* etc/NEWS: Mention the new possibility to visit large files
literally.
* lisp/files.el (files--ask-user-about-large-file): Use
"literally" instead of "raw", for consistency with
find-file-literally.
* doc/lispref/frames.texi (Input Focus): Tell explicitly that
focus-change events are sometimes supported on TTY frames.
Diffstat (limited to 'doc/lispref/frames.texi')
| -rw-r--r-- | doc/lispref/frames.texi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 5e8b5b46d5d..6678644bec7 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2783,11 +2783,15 @@ could switch to a different terminal without switching back when | |||
| 2783 | you're done. | 2783 | you're done. |
| 2784 | @end deffn | 2784 | @end deffn |
| 2785 | 2785 | ||
| 2786 | @cindex text-terminal focus notification | ||
| 2786 | Emacs cooperates with the window system by arranging to select frames | 2787 | Emacs cooperates with the window system by arranging to select frames |
| 2787 | as the server and window manager request. When a window system | 2788 | as the server and window manager request. When a window system |
| 2788 | informs Emacs that one of its frames has been selected, Emacs | 2789 | informs Emacs that one of its frames has been selected, Emacs |
| 2789 | internally generates a @dfn{focus-in} event. Focus events are | 2790 | internally generates a @dfn{focus-in} event. When an Emacs frame is |
| 2790 | normally handled by @code{handle-focus-in}. | 2791 | displayed on a text-terminal emulator, such as @command{xterm}, which |
| 2792 | supports reporting of focus-change notification, the focus-in and | ||
| 2793 | focus-out events are available even for text-mode frames. Focus | ||
| 2794 | events are normally handled by @code{handle-focus-in}. | ||
| 2791 | 2795 | ||
| 2792 | @deffn Command handle-focus-in event | 2796 | @deffn Command handle-focus-in event |
| 2793 | This function handles focus-in events from window systems and | 2797 | This function handles focus-in events from window systems and |