aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/programs.texi8
-rw-r--r--lisp/vc/ediff-util.el2
2 files changed, 6 insertions, 4 deletions
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi
index e409affd67d..3c802281207 100644
--- a/doc/emacs/programs.texi
+++ b/doc/emacs/programs.texi
@@ -1193,7 +1193,7 @@ replace man pages with better-organized manuals that you can browse
1193with Info (@pxref{Misc Help}). This process is not finished, so it is 1193with Info (@pxref{Misc Help}). This process is not finished, so it is
1194still useful to read manual pages. 1194still useful to read manual pages.
1195 1195
1196@findex manual-entry 1196@findex man
1197 You can read the man page for an operating system command, library 1197 You can read the man page for an operating system command, library
1198function, or system call, with the @kbd{M-x man} command. This 1198function, or system call, with the @kbd{M-x man} command. This
1199prompts for a topic, with completion (@pxref{Completion}), and runs 1199prompts for a topic, with completion (@pxref{Completion}), and runs
@@ -1210,11 +1210,11 @@ mode buffer.
1210named by a digit or by a digit and a letter. Sometimes there are man 1210named by a digit or by a digit and a letter. Sometimes there are man
1211pages with the same name in different sections. To read a man page 1211pages with the same name in different sections. To read a man page
1212from a specific section, type @samp{@var{topic}(@var{section})} or 1212from a specific section, type @samp{@var{topic}(@var{section})} or
1213@samp{@var{section} @var{topic}} when @kbd{M-x manual-entry} prompts 1213@samp{@var{section} @var{topic}} when @kbd{M-x man} prompts for the
1214for the topic. For example, the man page for the C library function 1214topic. For example, the man page for the C library function
1215@code{chmod} is in section 2, but there is a shell command of the same 1215@code{chmod} is in section 2, but there is a shell command of the same
1216name, whose man page is in section 1; to view the former, type 1216name, whose man page is in section 1; to view the former, type
1217@kbd{M-x manual-entry @key{RET} chmod(2) @key{RET}}. 1217@w{@kbd{M-x man @key{RET} chmod(2) @key{RET}}}.
1218 1218
1219@vindex Man-switches 1219@vindex Man-switches
1220@kindex M-n @r{(Man mode)} 1220@kindex M-n @r{(Man mode)}
diff --git a/lisp/vc/ediff-util.el b/lisp/vc/ediff-util.el
index 99672fcb012..31201477fa2 100644
--- a/lisp/vc/ediff-util.el
+++ b/lisp/vc/ediff-util.el
@@ -2626,6 +2626,8 @@ temporarily reverses the meaning of this variable."
2626 "Kill buffers A, B, and, possibly, C, if these buffers aren't modified. 2626 "Kill buffers A, B, and, possibly, C, if these buffers aren't modified.
2627In merge jobs, buffer C is not deleted here, but rather according to 2627In merge jobs, buffer C is not deleted here, but rather according to
2628ediff-quit-merge-hook. 2628ediff-quit-merge-hook.
2629ASK non-nil means ask the user whether to keep each unmodified buffer, unless
2630KEEP-VARIANTS is non-nil, in which case buffers are never killed.
2629A side effect of cleaning up may be that you should be careful when comparing 2631A side effect of cleaning up may be that you should be careful when comparing
2630the same buffer in two separate Ediff sessions: quitting one of them might 2632the same buffer in two separate Ediff sessions: quitting one of them might
2631delete this buffer in another session as well." 2633delete this buffer in another session as well."