diff options
| author | Lars Ingebrigtsen | 2021-09-13 13:02:16 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-09-13 13:02:16 +0200 |
| commit | f5db7103678287d90fcf2a4e4d3a739b1825631c (patch) | |
| tree | 3cd5ca28587ec907049e7aaf14ab07b6c156ec56 | |
| parent | 494403f4e0efe898c9dc640b33df338c04abb393 (diff) | |
| download | emacs-f5db7103678287d90fcf2a4e4d3a739b1825631c.tar.gz emacs-f5db7103678287d90fcf2a4e4d3a739b1825631c.zip | |
NEWS copy edits and tagging
| -rw-r--r-- | etc/NEWS | 15 |
1 files changed, 11 insertions, 4 deletions
| @@ -2909,13 +2909,16 @@ structures. | |||
| 2909 | This is for symmetry with 'visual-line-mode', which disables | 2909 | This 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 | |||
| 2914 | To recover the previous behavior you can use: | 2916 | To 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. |
| 2920 | To restore the old binding, say something like: | 2923 | To restore the old binding, say something like: |
| 2921 | 2924 | ||
| @@ -2927,6 +2930,7 @@ To restore the old binding, say something like: | |||
| 2927 | The last two lines are not strictly necessary if you don't care about | 2930 | The last two lines are not strictly necessary if you don't care about |
| 2928 | having those two commands on the 'M-o' keymap; see the next section. | 2931 | having 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. |
| 2931 | Use 'M-x center-line' and 'M-x center-paragraph' instead. See the | 2935 | Use 'M-x center-line' and 'M-x center-paragraph' instead. See the |
| 2932 | previous section for how to get back the old bindings. Alternatively, | 2936 | previous 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. |
| 2940 | Use 'M-x font-lock-fontify-block' instead, or the new 'C-x x f' | 2945 | Use 'M-x font-lock-fontify-block' instead, or the new 'C-x x f' |
| 2941 | command, which updates the syntax highlighting in the current buffer. | 2946 | command, 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'. |
| 2944 | Xterm sends this sequence for both 'F16' and 'Menu' keys | 2950 | Xterm sends this sequence for both 'F16' and 'Menu' keys |
| 2945 | It used to be mapped to 'print' but we couldn't find a terminal | 2951 | It 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). |
| 2954 | Setting this to nil inhibits that. | 2960 | Setting this to nil inhibits that. |
| 2955 | 2961 | ||
| 2956 | ** 'vc-print-branch-log' shows the change log for BRANCH from its root | 2962 | --- |
| 2957 | directory instead of the default directory. | 2963 | ** 'vc-print-branch-log' shows the change log from its root directory. |
| 2964 | It 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'. |