aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-09-13 13:02:16 +0200
committerLars Ingebrigtsen2021-09-13 13:02:16 +0200
commitf5db7103678287d90fcf2a4e4d3a739b1825631c (patch)
tree3cd5ca28587ec907049e7aaf14ab07b6c156ec56
parent494403f4e0efe898c9dc640b33df338c04abb393 (diff)
downloademacs-f5db7103678287d90fcf2a4e4d3a739b1825631c.tar.gz
emacs-f5db7103678287d90fcf2a4e4d3a739b1825631c.zip
NEWS copy edits and tagging
-rw-r--r--etc/NEWS15
1 files changed, 11 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 42c9f61b3b9..ba7dc164bea 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2909,13 +2909,16 @@ structures.
2909This is for symmetry with 'visual-line-mode', which disables 2909This is for symmetry with 'visual-line-mode', which disables
2910'truncate-lines'. 2910'truncate-lines'.
2911 2911
2912** 'electric-indent-mode' now also indents inside strings and comments, 2912---
2913(unless the indentation function doesn't, of course). 2913** 'electric-indent-mode' now also indents inside strings and comments.
2914(This only happens when indentation function also supports this.)
2915
2914To recover the previous behavior you can use: 2916To recover the previous behavior you can use:
2915 2917
2916 (add-hook 'electric-indent-functions 2918 (add-hook 'electric-indent-functions
2917 (lambda (_) (if (nth 8 (syntax-ppss)) 'no-indent))) 2919 (lambda (_) (if (nth 8 (syntax-ppss)) 'no-indent)))
2918 2920
2921---
2919** The 'M-o' ('facemenu-keymap') global binding has been removed. 2922** The 'M-o' ('facemenu-keymap') global binding has been removed.
2920To restore the old binding, say something like: 2923To restore the old binding, say something like:
2921 2924
@@ -2927,6 +2930,7 @@ To restore the old binding, say something like:
2927The last two lines are not strictly necessary if you don't care about 2930The last two lines are not strictly necessary if you don't care about
2928having those two commands on the 'M-o' keymap; see the next section. 2931having those two commands on the 'M-o' keymap; see the next section.
2929 2932
2933---
2930** The 'M-o M-s' and 'M-o M-S' global bindings have been removed. 2934** The 'M-o M-s' and 'M-o M-S' global bindings have been removed.
2931Use 'M-x center-line' and 'M-x center-paragraph' instead. See the 2935Use 'M-x center-line' and 'M-x center-paragraph' instead. See the
2932previous section for how to get back the old bindings. Alternatively, 2936previous section for how to get back the old bindings. Alternatively,
@@ -2936,10 +2940,12 @@ before, you can add the following to your init file:
2936 (define-key global-map "\M-o\M-s" 'center-line) 2940 (define-key global-map "\M-o\M-s" 'center-line)
2937 (define-key global-map "\M-o\M-S" 'center-paragraph) 2941 (define-key global-map "\M-o\M-S" 'center-paragraph)
2938 2942
2943---
2939** The 'M-o M-o' global binding has been removed. 2944** The 'M-o M-o' global binding has been removed.
2940Use 'M-x font-lock-fontify-block' instead, or the new 'C-x x f' 2945Use 'M-x font-lock-fontify-block' instead, or the new 'C-x x f'
2941command, which updates the syntax highlighting in the current buffer. 2946command, which updates the syntax highlighting in the current buffer.
2942 2947
2948---
2943** The escape sequence '\e[29~' in Xterm is now mapped to 'menu'. 2949** The escape sequence '\e[29~' in Xterm is now mapped to 'menu'.
2944Xterm sends this sequence for both 'F16' and 'Menu' keys 2950Xterm sends this sequence for both 'F16' and 'Menu' keys
2945It used to be mapped to 'print' but we couldn't find a terminal 2951It used to be mapped to 'print' but we couldn't find a terminal
@@ -2953,8 +2959,9 @@ If non-nil (the default), Emacs pushes pasted text onto the kill ring
2953(if using an xterm-like terminal that supports bracketed paste). 2959(if using an xterm-like terminal that supports bracketed paste).
2954Setting this to nil inhibits that. 2960Setting this to nil inhibits that.
2955 2961
2956** 'vc-print-branch-log' shows the change log for BRANCH from its root 2962---
2957directory instead of the default directory. 2963** 'vc-print-branch-log' shows the change log from its root directory.
2964It previously used to use the default directory.
2958 2965
2959--- 2966---
2960** 'project-shell' and 'shell' now use 'pop-to-buffer-same-window'. 2967** 'project-shell' and 'shell' now use 'pop-to-buffer-same-window'.