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 /etc | |
| 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 'etc')
| -rw-r--r-- | etc/NEWS | 10 |
1 files changed, 9 insertions, 1 deletions
| @@ -175,6 +175,13 @@ interface that's more like functions like @code{search-forward}. | |||
| 175 | ** More commands support noncontiguous rectangular regions, namely | 175 | ** More commands support noncontiguous rectangular regions, namely |
| 176 | 'upcase-dwim', 'downcase-dwim', 'replace-string', 'replace-regexp'. | 176 | 'upcase-dwim', 'downcase-dwim', 'replace-string', 'replace-regexp'. |
| 177 | 177 | ||
| 178 | +++ | ||
| 179 | ** When asked to visit a large file, Emacs now offers visiting it literally. | ||
| 180 | Previously, Emacs would only ask for confirmation before visiting | ||
| 181 | large files. Now it also offers a third alternative: to visit the | ||
| 182 | file literally, as in 'find-file-literally', which speeds up | ||
| 183 | navigation and editing of large files. | ||
| 184 | |||
| 178 | 185 | ||
| 179 | * Changes in Specialized Modes and Packages in Emacs 27.1 | 186 | * Changes in Specialized Modes and Packages in Emacs 27.1 |
| 180 | 187 | ||
| @@ -613,7 +620,8 @@ On terminal emulators that support the feature, Emacs can now support | |||
| 613 | ** Window-specific face remapping. | 620 | ** Window-specific face remapping. |
| 614 | Face specifications (of the kind used in 'face-remapping-alist') | 621 | Face specifications (of the kind used in 'face-remapping-alist') |
| 615 | now support filters, allowing faces to vary between different windows | 622 | now support filters, allowing faces to vary between different windows |
| 616 | displaying the same buffer. | 623 | displaying the same buffer. See the Info node "Face Remapping" of the |
| 624 | Emacs Lisp Reference manual for more detail. | ||
| 617 | 625 | ||
| 618 | +++ | 626 | +++ |
| 619 | ** New function assoc-delete-all. | 627 | ** New function assoc-delete-all. |