aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2023-08-12 13:50:38 -0400
committerEli Zaretskii2023-08-12 13:50:38 -0400
commit3fc9793a260feed0deda8b6bdfd3e1c73774181a (patch)
treea0ec5882b60ae1a5deff188971f6ae3586d5d0fa /doc
parent276bf5369ffa47f994586b932cb6a9dd760ecfeb (diff)
parent842dbf500e0fcf44d686d480f39d067b19ff38a9 (diff)
downloademacs-3fc9793a260feed0deda8b6bdfd3e1c73774181a.tar.gz
emacs-3fc9793a260feed0deda8b6bdfd3e1c73774181a.zip
Merge from origin/emacs-29
842dbf500e0 * Fix `batch-byte+native-compile' target directory. 8dbd5aa1eef Avoid crashes in 'display_count_lines' when current buffe... 47b4f4cf783 ; * doc/emacs/mini.texi (Completion Commands): Fix a typo... 78999d52136 Update csharp tree-sitter support due to upstream changes 556cb01b48e Substitute command keys in 'ielm-header' at use time 99367078e50 ; * etc/PROBLEMS: Add entry about XIM problems (bug#65205). 03e897c08fa Fix rare crashes in redisplay due to problems with fontsets b1ba06a1e4b Fix a typo in 'leuven-dark-theme.el' e80a9dcabb9 ; * admin/git-bisect-start: Update failing commits 9091f42784b ; * admin/git-bisect-start: Update failing commits 344ac529ca9 ; * etc/PROBLEMS: Fix typo. bccf848b26c Adapt Tramp test 71bc060e403 Properly expand the JSX indentation rules in 'js-ts-mode' 889cfb42ed9 * Add `emacs-lisp-native-compile' to easy-menu. 4535aafa8a3 * lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Si... 173af0cad51 * Introduce `emacs-lisp-native-compile'. 063d7d89d7a Fix the -x switch in non-X builds 5a7fb0b39b7 Document that `set-mouse-color' does not work everywhere d06fc72496f ; * doc/emacs/dired.texi (Misc Dired Features): Fix last ... 97b8ac376b5 Fix the effects and documentation of 'dired-free-space' 75c72e59f69 ; Fix typo 6d11b7b3007 Fix cross-reference to eldoc in eglot manual 913e50aba6c Add native-compilation to Emacs Lisp mode menu b93107c20b2 Fix emacs-lisp-native-compile-and-load eln target directo...
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/dired.texi17
-rw-r--r--doc/emacs/mini.texi4
-rw-r--r--doc/misc/eglot.texi7
3 files changed, 17 insertions, 11 deletions
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi
index 244dd7eb525..87124e962ca 100644
--- a/doc/emacs/dired.texi
+++ b/doc/emacs/dired.texi
@@ -1739,12 +1739,17 @@ rotation is lossless, and uses an external utility called
1739@section Other Dired Features 1739@section Other Dired Features
1740 1740
1741@vindex dired-free-space 1741@vindex dired-free-space
1742 By default, Dired will display the available space on the disk in 1742 By default, Dired displays the available space on the directory's
1743the first line. This is the @code{first} value of the 1743disk on the first line of that directory's listing, following the
1744@code{dired-free-space} variable. If you set this to 1744directory name. You can control this display by customizing the
1745@code{separate} instead, Dired will display this on a separate line 1745variable @code{dired-free-space}. Its default value is @code{first},
1746(including the space the files in the current directory takes). If 1746which produces the available space after the directory name. If you
1747you set this to @code{nil}, the free space isn't displayed at all. 1747customize it to the value @code{separate} instead, Dired will display
1748the disk space information on a separate line, following the line with
1749the directory name, and will include in that line the space used by
1750the files in the current directory as well as the available disk
1751space. If you set this to @code{nil}, the available disk space
1752information will not be displayed at all.
1748 1753
1749@kindex + @r{(Dired)} 1754@kindex + @r{(Dired)}
1750@findex dired-create-directory 1755@findex dired-create-directory
diff --git a/doc/emacs/mini.texi b/doc/emacs/mini.texi
index 21e2d38e96f..a104cd2bfa1 100644
--- a/doc/emacs/mini.texi
+++ b/doc/emacs/mini.texi
@@ -411,8 +411,8 @@ the minibuffer.
411@itemx @key{prior} 411@itemx @key{prior}
412Typing @kbd{M-v}, while in the minibuffer, selects the window showing 412Typing @kbd{M-v}, while in the minibuffer, selects the window showing
413the completion list (@code{switch-to-completions}). This paves the 413the completion list (@code{switch-to-completions}). This paves the
414way for also using the commands below. @key{PageUp}, @key{prior} and 414way for using the commands below. @key{PageUp}, @key{prior} and
415@kbd{M-g M-c} does the same. You can also select the window in other 415@kbd{M-g M-c} do the same. You can also select the window in other
416ways (@pxref{Windows}). 416ways (@pxref{Windows}).
417 417
418@findex choose-completion 418@findex choose-completion
diff --git a/doc/misc/eglot.texi b/doc/misc/eglot.texi
index 962e6c914ce..6eb212ca841 100644
--- a/doc/misc/eglot.texi
+++ b/doc/misc/eglot.texi
@@ -406,9 +406,10 @@ provides:
406At-point documentation: when point is at or near a symbol or an 406At-point documentation: when point is at or near a symbol or an
407identifier, the information about the symbol/identifier, such as the 407identifier, the information about the symbol/identifier, such as the
408signature of a function or class method and server-generated 408signature of a function or class method and server-generated
409diagnostics, is made available via the ElDoc package (@pxref{Lisp 409diagnostics, is made available via the ElDoc package
410Doc,,, emacs, GNU Emacs Manual}). This allows major modes to provide 410(@pxref{Programming Language Doc,,, emacs, GNU Emacs Manual}). This
411extensive help and documentation about the program identifiers. 411allows major modes to provide extensive help and documentation about
412the program identifiers.
412 413
413@item 414@item
414On-the-fly diagnostic annotations with server-suggested fixes, via the 415On-the-fly diagnostic annotations with server-suggested fixes, via the