aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorEli Zaretskii2018-06-16 13:10:52 +0300
committerEli Zaretskii2018-06-16 13:10:52 +0300
commit0a6a2fb1d0b02a5ac442cf6b344e35696aac7eb7 (patch)
treeb388527691ad118a3dfbfda1937f6115c02eb8ec /etc
parent2461266be1ea68a8c79af61abe850bb5a2c65040 (diff)
downloademacs-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/NEWS10
1 files changed, 9 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e89402db131..cecd3f81f85 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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.
180Previously, Emacs would only ask for confirmation before visiting
181large files. Now it also offers a third alternative: to visit the
182file literally, as in 'find-file-literally', which speeds up
183navigation 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.
614Face specifications (of the kind used in 'face-remapping-alist') 621Face specifications (of the kind used in 'face-remapping-alist')
615now support filters, allowing faces to vary between different windows 622now support filters, allowing faces to vary between different windows
616displaying the same buffer. 623displaying the same buffer. See the Info node "Face Remapping" of the
624Emacs Lisp Reference manual for more detail.
617 625
618+++ 626+++
619** New function assoc-delete-all. 627** New function assoc-delete-all.