diff options
| author | Stefan Kangas | 2021-12-05 06:30:35 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2021-12-05 06:30:35 +0100 |
| commit | 520a703fa7db07ba82661e68cf4eafe7ba61a8d0 (patch) | |
| tree | f0037702660118d199bd70a0fe644d9dbcaba761 /doc | |
| parent | 8bdea767208257599f6ab727e51dd94f0c1872e1 (diff) | |
| parent | c086358574e3671787394c7b9f6069760e7c6b3c (diff) | |
| download | emacs-520a703fa7db07ba82661e68cf4eafe7ba61a8d0.tar.gz emacs-520a703fa7db07ba82661e68cf4eafe7ba61a8d0.zip | |
Merge from origin/emacs-28
c086358574 Update to Org 9.5.1-15-gdb4805
fef3e60061 * lisp/emacs-lisp/edebug.el (edebug-eval-defun): Minor doc...
a1e30e4106 ; Fix most remaining AUTHORS warnings
f3e6a432c5 ; * doc/misc/efaq.texi (New in Emacs 28): Add more news.
00236cc802 Fix the enumeration values returned by 'try_scrolling'
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/efaq.texi | 51 | ||||
| -rw-r--r-- | doc/misc/org.org | 4 |
2 files changed, 51 insertions, 4 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 923687e3c99..28f0cb972d0 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -934,7 +934,7 @@ file (@kbd{C-h n}) for the full list of changes in Emacs 28. | |||
| 934 | @item | 934 | @item |
| 935 | Emacs now optionally supports native compilation of Lisp files. This | 935 | Emacs now optionally supports native compilation of Lisp files. This |
| 936 | can improves performance significantly in some cases. To enable this, | 936 | can improves performance significantly in some cases. To enable this, |
| 937 | configure Emacs with the '--with-native-compilation' option. | 937 | configure Emacs with the @option{--with-native-compilation} option. |
| 938 | 938 | ||
| 939 | @item | 939 | @item |
| 940 | The new NonGNU ELPA archive is enabled by default alongside GNU ELPA. | 940 | The new NonGNU ELPA archive is enabled by default alongside GNU ELPA. |
| @@ -945,6 +945,13 @@ by the @code{list-packages} command. | |||
| 945 | The Cairo graphics library is now used by default if present. | 945 | The Cairo graphics library is now used by default if present. |
| 946 | 946 | ||
| 947 | @item | 947 | @item |
| 948 | On GNU/Linux, Emacs now supports loading Secure Computing filters. To | ||
| 949 | use this feature, invoke Emacs with the @option{--seccomp=@var{file}} | ||
| 950 | command-line switch, where @var{file} names a binary file that defines | ||
| 951 | the filtering. See the manual page of the @code{seccomp} system call | ||
| 952 | for more details. | ||
| 953 | |||
| 954 | @item | ||
| 948 | The new themes @samp{modus-vivendi} and @samp{modus-operandi} have | 955 | The new themes @samp{modus-vivendi} and @samp{modus-operandi} have |
| 949 | been added. They are designed to conform with the highest standard | 956 | been added. They are designed to conform with the highest standard |
| 950 | for color-contrast accessibility (WCAG AAA). | 957 | for color-contrast accessibility (WCAG AAA). |
| @@ -958,9 +965,49 @@ New system for displaying documentation for groups of functions | |||
| 958 | (@kbd{M-x shortdoc-display-group RET}). | 965 | (@kbd{M-x shortdoc-display-group RET}). |
| 959 | 966 | ||
| 960 | @item | 967 | @item |
| 968 | Emacs can now support 24-bit color text-mode terminals even if their | ||
| 969 | terminfo database doesn't state this support in a standard way. Set | ||
| 970 | the @env{COLORTERM} environment variable to the value @samp{truecolor} | ||
| 971 | to activate this. | ||
| 972 | |||
| 973 | @item | ||
| 974 | The @code{strike-through} face attribute is now supported on capable | ||
| 975 | text-mode terminals. | ||
| 976 | |||
| 977 | @item | ||
| 978 | @code{xterm-mouse-mode} supports TTY menus. | ||
| 979 | |||
| 980 | @item | ||
| 981 | A new minor mode @code{context-menu-mode} causes @code{mouse-3} | ||
| 982 | (a.k.a.@: ``right-clicks'') of the mouse to pop up context-dependent | ||
| 983 | menus. | ||
| 984 | |||
| 985 | @item | ||
| 986 | Prefix commands to control the display of the results of the next | ||
| 987 | command. @kbd{C-x 4 4 @var{command}} displays the result of | ||
| 988 | @var{command} in a new window. @kbd{C-x 5 5 @var{command}} displays | ||
| 989 | the results of @var{command} in a new frame. | ||
| 990 | |||
| 991 | @item | ||
| 992 | Emacs now supports ``transient'' input methods. A transient input | ||
| 993 | method is enabled for inserting a single character, and is then | ||
| 994 | automatically disabled. Select a transient input method with @kbd{C-u | ||
| 995 | C-x \}; enable it (for inserting a single character) with @kbd{C-x \}. | ||
| 996 | New input methods @code{compose} (based on X Window System Multi_key | ||
| 997 | sequences) and @code{iso-transl} are especially convenient with this | ||
| 998 | feature, when you need to insert a single special character. | ||
| 999 | |||
| 1000 | @item | ||
| 1001 | @kbd{M-y}, when invoked after a command that is not a yank command, | ||
| 1002 | allows selection of one of the previous kills. | ||
| 1003 | |||
| 1004 | @item | ||
| 1005 | New minor mode @code{repeat-mode} allows to repeat commands with fewer | ||
| 1006 | keystrokes. | ||
| 1007 | |||
| 1008 | @item | ||
| 961 | Among the many internal changes in this release, we would like to | 1009 | Among the many internal changes in this release, we would like to |
| 962 | highlight that all files in the tree now use @code{lexical-binding}. | 1010 | highlight that all files in the tree now use @code{lexical-binding}. |
| 963 | |||
| 964 | @end itemize | 1011 | @end itemize |
| 965 | 1012 | ||
| 966 | 1013 | ||
diff --git a/doc/misc/org.org b/doc/misc/org.org index 85117714ee9..adf24da1c3f 100644 --- a/doc/misc/org.org +++ b/doc/misc/org.org | |||
| @@ -15571,7 +15571,7 @@ for usage and configuration details. | |||
| 15571 | :DESCRIPTION: Fine-tuning the export output. | 15571 | :DESCRIPTION: Fine-tuning the export output. |
| 15572 | :END: | 15572 | :END: |
| 15573 | 15573 | ||
| 15574 | *** Hooks | 15574 | *** Export hooks |
| 15575 | :PROPERTIES: | 15575 | :PROPERTIES: |
| 15576 | :UNNUMBERED: notoc | 15576 | :UNNUMBERED: notoc |
| 15577 | :END: | 15577 | :END: |
| @@ -18203,7 +18203,7 @@ expanded anyway. | |||
| 18203 | #+kindex: C-c C-v f | 18203 | #+kindex: C-c C-v f |
| 18204 | Choose a file to tangle. Bound to {{{kbd(C-c C-v f)}}}. | 18204 | Choose a file to tangle. Bound to {{{kbd(C-c C-v f)}}}. |
| 18205 | 18205 | ||
| 18206 | *** Hooks | 18206 | *** Tangle hooks |
| 18207 | :PROPERTIES: | 18207 | :PROPERTIES: |
| 18208 | :UNNUMBERED: notoc | 18208 | :UNNUMBERED: notoc |
| 18209 | :END: | 18209 | :END: |