aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2025-04-05 07:07:29 -0400
committerEli Zaretskii2025-04-05 07:07:29 -0400
commit2054060d56573e9dadc53b69a5aa4063e4cebae6 (patch)
treecd01e02394207215c4004b6170bc744a4755febd /doc
parentd403be4811a3d541785f58a5ed75a9ccda3fb781 (diff)
parentae7f65f3f9cbe03608c9920e7f2f82a5a82e62d6 (diff)
downloademacs-2054060d56573e9dadc53b69a5aa4063e4cebae6.tar.gz
emacs-2054060d56573e9dadc53b69a5aa4063e4cebae6.zip
Merge from origin/emacs-30
ae7f65f3f9c Fix obsolete documentation of desktop library fd5f817882a Improve Tramp's initial warnings 1e865a2f288 Explain, how to suppress Tramp warnings a0962074743 printed manuals: xrefs in and out of "Preparing Patches" 3f9ac99fc7e Fix Tramp's file-attributes cache
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/misc.texi4
-rw-r--r--doc/emacs/package.texi8
-rw-r--r--doc/emacs/vc1-xtra.texi9
-rw-r--r--doc/misc/tramp.texi9
4 files changed, 26 insertions, 4 deletions
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index 5feee108331..d4f2de982d6 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -2972,8 +2972,8 @@ invoking @kbd{M-x desktop-read} next. The @code{desktop-clear}
2972command kills all buffers except for internal ones, and clears the 2972command kills all buffers except for internal ones, and clears the
2973global variables listed in @code{desktop-globals-to-clear}. If you 2973global variables listed in @code{desktop-globals-to-clear}. If you
2974want it to preserve certain buffers, customize the variable 2974want it to preserve certain buffers, customize the variable
2975@code{desktop-clear-preserve-buffers-regexp}, whose value is a regular 2975@code{desktop-clear-preserve-buffers}, whose value is a list of regular
2976expression matching the names of buffers not to kill. 2976expressions matching the names of buffers not to kill.
2977 2977
2978@vindex desktop-globals-to-save 2978@vindex desktop-globals-to-save
2979 If you want to save minibuffer history from one session to 2979 If you want to save minibuffer history from one session to
diff --git a/doc/emacs/package.texi b/doc/emacs/package.texi
index 857584b9933..182efff7afb 100644
--- a/doc/emacs/package.texi
+++ b/doc/emacs/package.texi
@@ -654,7 +654,13 @@ maintainer, you can use the command @code{package-report-bug} to
654report a bug via Email. This report will include all the user options 654report a bug via Email. This report will include all the user options
655that you have customized. If you have made a change you wish to share 655that you have customized. If you have made a change you wish to share
656with the maintainers, first commit your changes then use the command 656with the maintainers, first commit your changes then use the command
657@code{package-vc-prepare-patch} to share it. @xref{Preparing Patches}. 657@code{package-vc-prepare-patch} to share it.
658@iftex
659@xref{Preparing Patches,,,emacs-xtra, Specialized Emacs Features}.
660@end iftex
661@ifnottex
662@xref{Preparing Patches}.
663@end ifnottex
658 664
659@findex package-vc-install-from-checkout 665@findex package-vc-install-from-checkout
660@findex package-vc-rebuild 666@findex package-vc-rebuild
diff --git a/doc/emacs/vc1-xtra.texi b/doc/emacs/vc1-xtra.texi
index 45bc6d77728..5c448e741f2 100644
--- a/doc/emacs/vc1-xtra.texi
+++ b/doc/emacs/vc1-xtra.texi
@@ -312,7 +312,14 @@ If you expect to contribute patches on a regular basis, you can set
312the user option @code{vc-default-patch-addressee} to the address(es) 312the user option @code{vc-default-patch-addressee} to the address(es)
313you wish to use. This will be used as the default value when invoking 313you wish to use. This will be used as the default value when invoking
314@code{vc-prepare-patch}. Project maintainers may consider setting 314@code{vc-prepare-patch}. Project maintainers may consider setting
315this as a directory local variable (@pxref{Directory Variables}). 315this as a directory local variable
316@iftex
317(@pxref{Directory Variables,,Per-Directory Local Variables,
318emacs, the Emacs Manual}).
319@end iftex
320@ifnottex
321(@pxref{Directory Variables}).
322@end ifnottex
316 323
317@node Customizing VC 324@node Customizing VC
318@subsection Customizing VC 325@subsection Customizing VC
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index a22e514f055..c3af74ea1df 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -6769,6 +6769,15 @@ the following settings are required:
6769@end group 6769@end group
6770@end lisp 6770@end lisp
6771 6771
6772@vindex warning-suppress-types
6773@value{tramp} warnings are displayed in the @file{*Warnings*} buffer,
6774which pops up. If you don't want to see this buffer for every
6775@value{tramp} warning, set @code{warning-suppress-types}:
6776
6777@lisp
6778(setq warning-suppress-types '((tramp)))
6779@end lisp
6780
6772If @code{tramp-verbose} is greater than or equal to 10, Lisp 6781If @code{tramp-verbose} is greater than or equal to 10, Lisp
6773backtraces are also added to the @value{tramp} debug buffer in case of 6782backtraces are also added to the @value{tramp} debug buffer in case of
6774errors. 6783errors.