aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-06-28 19:33:50 -0700
committerGlenn Morris2014-06-28 19:33:50 -0700
commita27e8c78c03a911db68885f0beffb69250fc75fe (patch)
tree5242904a7d105a39a33eba2dad8c093da390929b
parent64de2916ca9a68bed19ea24115231b7c457760ec (diff)
downloademacs-a27e8c78c03a911db68885f0beffb69250fc75fe.tar.gz
emacs-a27e8c78c03a911db68885f0beffb69250fc75fe.zip
Doc and comment fixes re "online" help
* doc/emacs/help.texi (Misc Help): * doc/emacs/trouble.texi (Checklist): * doc/lispintro/emacs-lisp-intro.texi (Note for Novices, Finding More) (Conclusion): * doc/lispref/help.texi (Help Functions): * doc/misc/info.texi, doc/misc/mh-e.texi: * etc/refcards/calccard.tex (section{Getting Help}): * lisp/cus-edit.el (help): * lisp/finder.el (finder-known-keywords): * lisp/help.el (help-for-help-internal): * lisp/vc/ediff-mult.el (ediff-meta-buffer-verbose-message) (ediff-redraw-registry-buffer): * lisp/vc/ediff-ptch.el (ediff-patch-file-internal): Doc fixes re "online" help. Fixes: debbugs:17803
-rw-r--r--doc/emacs/ChangeLog6
-rw-r--r--doc/emacs/help.texi3
-rw-r--r--doc/emacs/trouble.texi2
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi8
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/help.texi2
-rw-r--r--doc/misc/ChangeLog3
-rw-r--r--doc/misc/info.texi6
-rw-r--r--doc/misc/mh-e.texi22
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/refcards/calccard.tex2
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/cus-edit.el2
-rw-r--r--lisp/ehelp.el2
-rw-r--r--lisp/emulation/viper.el2
-rw-r--r--lisp/finder.el2
-rw-r--r--lisp/help.el10
-rw-r--r--lisp/progmodes/f90.el4
-rw-r--r--lisp/progmodes/pascal.el4
-rw-r--r--lisp/vc/ediff-mult.el4
-rw-r--r--lisp/vc/ediff-ptch.el2
-rw-r--r--lisp/vc/ediff.el2
23 files changed, 71 insertions, 40 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 7c85d3a617e..5457f2d1f42 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,9 @@
12014-06-29 Glenn Morris <rgm@gnu.org>
2
3 * help.texi (Misc Help):
4 * trouble.texi (Checklist): "Online" help doesn't mean what it
5 used to any more.
6
12014-06-08 Glenn Morris <rgm@gnu.org> 72014-06-08 Glenn Morris <rgm@gnu.org>
2 8
3 * entering.texi (Entering Emacs): Small fix re initial-buffer-choice. 9 * entering.texi (Entering Emacs): Small fix re initial-buffer-choice.
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi
index db5448692f9..da831d76124 100644
--- a/doc/emacs/help.texi
+++ b/doc/emacs/help.texi
@@ -490,8 +490,7 @@ currently in use. @xref{Coding Systems}.
490@kindex C-h i 490@kindex C-h i
491@findex info 491@findex info
492@cindex Info 492@cindex Info
493@cindex manuals, on-line 493@cindex manuals, included
494@cindex on-line manuals
495 @kbd{C-h i} (@code{info}) runs the Info program, which browses 494 @kbd{C-h i} (@code{info}) runs the Info program, which browses
496structured documentation files. The entire Emacs manual is available 495structured documentation files. The entire Emacs manual is available
497within Info, along with many other manuals for the GNU system. Type 496within Info, along with many other manuals for the GNU system. Type
diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi
index f0cbbcc5721..09260a1e5a9 100644
--- a/doc/emacs/trouble.texi
+++ b/doc/emacs/trouble.texi
@@ -847,7 +847,7 @@ conclusion from our observations.
847@item 847@item
848If the bug is that the Emacs Manual or the Emacs Lisp Reference Manual 848If the bug is that the Emacs Manual or the Emacs Lisp Reference Manual
849fails to describe the actual behavior of Emacs, or that the text is 849fails to describe the actual behavior of Emacs, or that the text is
850confusing, copy in the text from the online manual which you think is 850confusing, copy in the text from the manual which you think is
851at fault. If the section is small, just the section name is enough. 851at fault. If the section is small, just the section name is enough.
852 852
853@item 853@item
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 6ca9eb4c93f..ee3af3ff3d1 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12014-06-29 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi (Note for Novices, Finding More, Conclusion):
4 "Online" help doesn't mean what it used to any more.
5
12014-02-25 Glenn Morris <rgm@gnu.org> 62014-02-25 Glenn Morris <rgm@gnu.org>
2 7
3 * emacs-lisp-intro.texi (X11 Colors): Don't use setq with hooks. 8 * emacs-lisp-intro.texi (X11 Colors): Don't use setq with hooks.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index f181569ca75..4c85e67f7f3 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -903,7 +903,7 @@ file, @file{cl.el}, that adds many Common Lisp features to Emacs Lisp.)
903If you don't know GNU Emacs, you can still read this document 903If you don't know GNU Emacs, you can still read this document
904profitably. However, I recommend you learn Emacs, if only to learn to 904profitably. However, I recommend you learn Emacs, if only to learn to
905move around your computer screen. You can teach yourself how to use 905move around your computer screen. You can teach yourself how to use
906Emacs with the on-line tutorial. To use it, type @kbd{C-h t}. (This 906Emacs with the built-in tutorial. To use it, type @kbd{C-h t}. (This
907means you press and release the @key{CTRL} key and the @kbd{h} at the 907means you press and release the @key{CTRL} key and the @kbd{h} at the
908same time, and then press and release @kbd{t}.) 908same time, and then press and release @kbd{t}.)
909 909
@@ -4657,7 +4657,7 @@ specialized library, such as a law library or an engineering library,
4657rather than a general library. Each library, or file, contains 4657rather than a general library. Each library, or file, contains
4658functions that relate to a particular topic or activity, such as 4658functions that relate to a particular topic or activity, such as
4659@file{abbrev.el} for handling abbreviations and other typing 4659@file{abbrev.el} for handling abbreviations and other typing
4660shortcuts, and @file{help.el} for on-line help. (Sometimes several 4660shortcuts, and @file{help.el} for help. (Sometimes several
4661libraries provide code for a single activity, as the various 4661libraries provide code for a single activity, as the various
4662@file{rmail@dots{}} files provide code for reading electronic mail.) 4662@file{rmail@dots{}} files provide code for reading electronic mail.)
4663In @cite{The GNU Emacs Manual}, you will see sentences such as ``The 4663In @cite{The GNU Emacs Manual}, you will see sentences such as ``The
@@ -18685,9 +18685,9 @@ easy-to-read description of Emacs Lisp. It is written not only for
18685experts, but for people who know what you know. (The @cite{Reference 18685experts, but for people who know what you know. (The @cite{Reference
18686Manual} comes with the standard GNU Emacs distribution. Like this 18686Manual} comes with the standard GNU Emacs distribution. Like this
18687introduction, it comes as a Texinfo source file, so you can read it 18687introduction, it comes as a Texinfo source file, so you can read it
18688on-line and as a typeset, printed book.) 18688on your computer and as a typeset, printed book.)
18689 18689
18690Go to the other on-line help that is part of GNU Emacs: the on-line 18690Go to the other built-in help that is part of GNU Emacs: the built-in
18691documentation for all functions and variables, and @code{find-tag}, 18691documentation for all functions and variables, and @code{find-tag},
18692the program that takes you to sources. 18692the program that takes you to sources.
18693 18693
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 6b673e7f329..2464eda28cb 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12014-06-29 Glenn Morris <rgm@gnu.org>
2
3 * help.texi (Help Functions): "Online" help doesn't mean what it
4 used to any more.
5
12014-06-26 Glenn Morris <rgm@gnu.org> 62014-06-26 Glenn Morris <rgm@gnu.org>
2 7
3 * minibuf.texi (Intro to Minibuffers): Batch mode is basic. 8 * minibuf.texi (Intro to Minibuffers): Batch mode is basic.
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi
index 9a763b60938..20fb0e651f9 100644
--- a/doc/lispref/help.texi
+++ b/doc/lispref/help.texi
@@ -508,7 +508,7 @@ non-@code{nil}, the return value is always a vector.
508@node Help Functions 508@node Help Functions
509@section Help Functions 509@section Help Functions
510 510
511 Emacs provides a variety of on-line help functions, all accessible to 511 Emacs provides a variety of built-in help functions, all accessible to
512the user as subcommands of the prefix @kbd{C-h}. For more information 512the user as subcommands of the prefix @kbd{C-h}. For more information
513about them, see @ref{Help, , Help, emacs, The GNU Emacs Manual}. Here 513about them, see @ref{Help, , Help, emacs, The GNU Emacs Manual}. Here
514we describe some program-level interfaces to the same information. 514we describe some program-level interfaces to the same information.
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index d26d3a85b03..8547299aafc 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,8 @@
12014-06-29 Glenn Morris <rgm@gnu.org> 12014-06-29 Glenn Morris <rgm@gnu.org>
2 2
3 * info.texi, mh-e.texi: "Online help" doesn't mean what it
4 used to any more.
5
3 * idlwave.texi (Introduction): Comment out dead http screenshot links. 6 * idlwave.texi (Introduction): Comment out dead http screenshot links.
4 7
52014-06-23 Leo Liu <sdl.web@gmail.com> 82014-06-23 Leo Liu <sdl.web@gmail.com>
diff --git a/doc/misc/info.texi b/doc/misc/info.texi
index 87e7794c61e..a3a14a35b80 100644
--- a/doc/misc/info.texi
+++ b/doc/misc/info.texi
@@ -12,7 +12,7 @@
12@comment %**end of header 12@comment %**end of header
13 13
14@copying 14@copying
15This file describes how to use Info, the on-line, menu-driven GNU 15This file describes how to use Info, the menu-driven GNU
16documentation system. 16documentation system.
17 17
18Copyright @copyright{} 1989, 1992, 1996--2014 Free Software Foundation, Inc. 18Copyright @copyright{} 1989, 1992, 1996--2014 Free Software Foundation, Inc.
@@ -51,7 +51,7 @@ modify this GNU manual.''
51@node Top 51@node Top
52@top Info: An Introduction 52@top Info: An Introduction
53 53
54The GNU Project distributes most of its on-line manuals in the 54The GNU Project distributes most of its manuals in the
55@dfn{Info format}, which you read using an @dfn{Info reader}. You are 55@dfn{Info format}, which you read using an @dfn{Info reader}. You are
56probably using an Info reader to read this now. 56probably using an Info reader to read this now.
57 57
@@ -98,7 +98,7 @@ program on a computer, so that you can try Info commands while reading
98about them. Reading it on paper or with an HTML browser is less 98about them. Reading it on paper or with an HTML browser is less
99effective, since you must take it on faith that the commands described 99effective, since you must take it on faith that the commands described
100really do what the manual says. By all means go through this manual 100really do what the manual says. By all means go through this manual
101now that you have it; but please try going through the on-line version 101now that you have it; but please try going through the Info version
102as well. 102as well.
103 103
104@cindex Info reader, how to invoke 104@cindex Info reader, how to invoke
diff --git a/doc/misc/mh-e.texi b/doc/misc/mh-e.texi
index a5766e346e3..b4538f89db5 100644
--- a/doc/misc/mh-e.texi
+++ b/doc/misc/mh-e.texi
@@ -227,7 +227,7 @@ have, see @ref{Getting Started}.
227@kindex C-h t 227@kindex C-h t
228 228
229If you don't already use GNU Emacs but want to learn more, you can 229If you don't already use GNU Emacs but want to learn more, you can
230read an online tutorial by starting GNU Emacs and typing @kbd{C-h t} 230read a built-in tutorial by starting GNU Emacs and typing @kbd{C-h t}
231(@code{help-with-tutorial}). (To learn about this notation, see 231(@code{help-with-tutorial}). (To learn about this notation, see
232@ref{Conventions}.) If you want to take the plunge, consult the 232@ref{Conventions}.) If you want to take the plunge, consult the
233@iftex 233@iftex
@@ -1066,9 +1066,9 @@ This chapter begins the meat of the manual which goes into more detail
1066about every MH-E command and option. 1066about every MH-E command and option.
1067 1067
1068@cindex Emacs, info 1068@cindex Emacs, info
1069@cindex Emacs, online help 1069@cindex Emacs, built-in help
1070@cindex info 1070@cindex info
1071@cindex online help 1071@cindex built-in help
1072@findex describe-mode 1072@findex describe-mode
1073@findex mh-help 1073@findex mh-help
1074@kindex ? 1074@kindex ?
@@ -1083,12 +1083,12 @@ summaries at the beginning of each chapter. In case you have or would
1083like to rebind the keys, the command summaries also list the 1083like to rebind the keys, the command summaries also list the
1084associated Emacs Lisp function. Furthermore, even if you're stranded 1084associated Emacs Lisp function. Furthermore, even if you're stranded
1085on a desert island with a laptop and are without your manuals, you can 1085on a desert island with a laptop and are without your manuals, you can
1086get a summary of all these commands with GNU Emacs online help: use 1086get a summary of all these commands with GNU Emacs built-in help: use
1087@kbd{C-h m} (@code{describe-mode}) for a brief summary of commands, 1087@kbd{C-h m} (@code{describe-mode}) for a brief summary of commands,
1088@kbd{?} (@code{mh-help}) for an even briefer summary@footnote{This 1088@kbd{?} (@code{mh-help}) for an even briefer summary@footnote{This
1089help appears in a buffer called @file{*MH-E Help*} 1089help appears in a buffer called @file{*MH-E Help*}
1090(@pxref{Miscellaneous}).} (@kbd{C-c ?} in MH-Letter mode), or @kbd{C-h 1090(@pxref{Miscellaneous}).} (@kbd{C-c ?} in MH-Letter mode), or @kbd{C-h
1091i} to read this manual via Info. The online help is quite good; try 1091i} to read this manual via Info. The built-in help is quite good; try
1092running @kbd{C-h C-h}. This brings up a list of available help topics, 1092running @kbd{C-h C-h}. This brings up a list of available help topics,
1093one of which displays the documentation for a given key (like @kbd{C-h 1093one of which displays the documentation for a given key (like @kbd{C-h
1094k C-n}). Another useful help feature is to view the manual section 1094k C-n}). Another useful help feature is to view the manual section
@@ -1120,21 +1120,21 @@ exist,
1120@c Yes, some of the stuff in the following sections is redundant, but 1120@c Yes, some of the stuff in the following sections is redundant, but
1121@c TeX barfs if the @ifs are inside the @footnote. 1121@c TeX barfs if the @ifs are inside the @footnote.
1122@iftex 1122@iftex
1123@footnote{The @cite{GNU Emacs Lisp Reference Manual} may be available 1123@footnote{The @cite{GNU Emacs Lisp Reference Manual} should be available
1124online in the Info system by typing @kbd{C-h i m Emacs Lisp 1124via the Info system by typing @kbd{C-h i m Emacs Lisp
1125@key{RET}}. It is also available online at @* 1125@key{RET}}. It is also available online at @*
1126@uref{http://www.gnu.org/software/emacs/manual/elisp.html}.} 1126@uref{http://www.gnu.org/software/emacs/manual/elisp.html}.}
1127@end iftex 1127@end iftex
1128@ifinfo 1128@ifinfo
1129@footnote{@xref{Top, The GNU Emacs Lisp Reference Manual, , elisp, GNU 1129@footnote{@xref{Top, The GNU Emacs Lisp Reference Manual, , elisp, GNU
1130Emacs Lisp Reference Manual}, which may be available online in the 1130Emacs Lisp Reference Manual}, which should be available via the
1131Info system. It is also available online at 1131Info system. It is also available online at
1132@uref{http://www.gnu.org/software/emacs/manual/elisp.html}.} 1132@uref{http://www.gnu.org/software/emacs/manual/elisp.html}.}
1133@end ifinfo 1133@end ifinfo
1134@ifhtml 1134@ifhtml
1135@footnote{The 1135@footnote{The
1136@uref{http://www.gnu.org/software/emacs/manual/elisp.html, 1136@uref{http://www.gnu.org/software/emacs/manual/elisp.html,
1137The GNU Emacs Lisp Reference Manual} may also be available online in 1137The GNU Emacs Lisp Reference Manual} should be available via
1138the Info system by typing @kbd{C-h i m Emacs Lisp @key{RET}}.} 1138the Info system by typing @kbd{C-h i m Emacs Lisp @key{RET}}.}
1139@end ifhtml 1139@end ifhtml
1140and you can look at the code itself for examples. Look in the Emacs 1140and you can look at the code itself for examples. Look in the Emacs
@@ -1142,7 +1142,7 @@ Lisp directory on your system (such as
1142@file{/usr/local/share/emacs/lisp/mh-e}) and find all the @file{mh-*.el} 1142@file{/usr/local/share/emacs/lisp/mh-e}) and find all the @file{mh-*.el}
1143files there. When calling MH-E and other Emacs Lisp functions directly 1143files there. When calling MH-E and other Emacs Lisp functions directly
1144from Emacs Lisp code, you'll need to know the correct arguments. Use 1144from Emacs Lisp code, you'll need to know the correct arguments. Use
1145the online help for this. For example, try @kbd{C-h f 1145the built-in help for this. For example, try @kbd{C-h f
1146mh-execute-commands @key{RET}}. If you write your own functions, 1146mh-execute-commands @key{RET}}. If you write your own functions,
1147please do not prefix your symbols (variables and functions) with 1147please do not prefix your symbols (variables and functions) with
1148@samp{mh-}. This prefix is reserved for the MH-E package. To avoid 1148@samp{mh-}. This prefix is reserved for the MH-E package. To avoid
@@ -6405,7 +6405,7 @@ see the section
6405The Menu Bar} in @cite{The GNU Emacs Manual}. 6405The Menu Bar} in @cite{The GNU Emacs Manual}.
6406@end ifhtml 6406@end ifhtml
6407 6407
6408The Emacs manual describes how to get online help for a particular 6408The Emacs manual describes how to get help for a particular
6409menu item. You can also look up a menu item in the index of this 6409menu item. You can also look up a menu item in the index of this
6410manual in two ways: all of the menu items are listed alphabetically, 6410manual in two ways: all of the menu items are listed alphabetically,
6411and you can also browse all of the items under the index entry 6411and you can also browse all of the items under the index entry
diff --git a/etc/ChangeLog b/etc/ChangeLog
index e040d8fd51a..9493fc0a64f 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
12014-06-29 Glenn Morris <rgm@gnu.org>
2
3 * refcards/calccard.tex (section{Getting Help}):
4 Meaning of "on-line" has changed.
5
12014-06-27 Glenn Morris <rgm@gnu.org> 62014-06-27 Glenn Morris <rgm@gnu.org>
2 7
3 * publicsuffix.txt: Update from source. 8 * publicsuffix.txt: Update from source.
diff --git a/etc/refcards/calccard.tex b/etc/refcards/calccard.tex
index 982382ecd89..03bc37d8856 100644
--- a/etc/refcards/calccard.tex
+++ b/etc/refcards/calccard.tex
@@ -297,7 +297,7 @@ The \kbd{h} prefix key is Calc's analogue of \kbd{C-h} in Emacs.
297\key{describe key briefly}{h c} 297\key{describe key briefly}{h c}
298\key{describe key fully}{h k} 298\key{describe key fully}{h k}
299\key{describe function or command}{h f} 299\key{describe function or command}{h f}
300\key{read on-line manual}{h i{\rm\enskip or\enskip}\calcprefix i} 300\key{read Info manual}{h i{\rm\enskip or\enskip}\calcprefix i}
301\key{read full Calc summary}{h s{\rm\enskip or\enskip}\calcprefix s} 301\key{read full Calc summary}{h s{\rm\enskip or\enskip}\calcprefix s}
302 302
303\section{Error Recovery} 303\section{Error Recovery}
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 90cb951681c..1a1f91b0e3d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,13 @@
12014-06-29 Glenn Morris <rgm@gnu.org> 12014-06-29 Glenn Morris <rgm@gnu.org>
2 2
3 * cus-edit.el (help):
4 * finder.el (finder-known-keywords):
5 * help.el (help-for-help-internal):
6 * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
7 (ediff-redraw-registry-buffer):
8 * vc/ediff-ptch.el (ediff-patch-file-internal):
9 Doc fixes re "online" help. (Bug#17803)
10
3 * progmodes/idlwave.el (idlwave): Update url-link for custom group. 11 * progmodes/idlwave.el (idlwave): Update url-link for custom group.
4 (idlwave-mode): Doc URL update. 12 (idlwave-mode): Doc URL update.
5 13
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 212e29069eb..b54898a171c 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -324,7 +324,7 @@
324 :group 'emacs) 324 :group 'emacs)
325 325
326(defgroup help nil 326(defgroup help nil
327 "Support for on-line help systems." 327 "Support for Emacs help systems."
328 :group 'emacs) 328 :group 'emacs)
329 329
330(defgroup multimedia nil 330(defgroup multimedia nil
diff --git a/lisp/ehelp.el b/lisp/ehelp.el
index dd6c6c4cb28..46db552c3f5 100644
--- a/lisp/ehelp.el
+++ b/lisp/ehelp.el
@@ -25,7 +25,7 @@
25;;; Commentary: 25;;; Commentary:
26 26
27;; This package provides a pre-packaged `Electric Help Mode' for 27;; This package provides a pre-packaged `Electric Help Mode' for
28;; browsing on-line help screens. There is one entry point, 28;; browsing Emacs help screens. There is one entry point,
29;; `with-electric-help'; all you have to give it is a no-argument 29;; `with-electric-help'; all you have to give it is a no-argument
30;; function that generates the actual text of the help into the current 30;; function that generates the actual text of the help into the current
31;; buffer. 31;; buffer.
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index 650b8acbb81..d1353bdc8fa 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -107,7 +107,7 @@
107;; ---------------- 107;; ----------------
108;; Bug reports and ideas contributed by many users have helped 108;; Bug reports and ideas contributed by many users have helped
109;; improve Viper and the various versions of VIP. 109;; improve Viper and the various versions of VIP.
110;; See the on-line manual for a complete list of contributors. 110;; See the manual for a complete list of contributors.
111;; 111;;
112;; 112;;
113;;; Notes: 113;;; Notes:
diff --git a/lisp/finder.el b/lisp/finder.el
index 092a2ddd8a4..bb5b441e26d 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -52,7 +52,7 @@
52 (frames . "Emacs frames and window systems") 52 (frames . "Emacs frames and window systems")
53 (games . "games, jokes and amusements") 53 (games . "games, jokes and amusements")
54 (hardware . "interfacing with system hardware") 54 (hardware . "interfacing with system hardware")
55 (help . "on-line help systems") 55 (help . "Emacs help systems")
56 (hypermedia . "links between text or other media types") 56 (hypermedia . "links between text or other media types")
57 (i18n . "internationalization and character-set support") 57 (i18n . "internationalization and character-set support")
58 (internal . "code for Emacs internals, build process, defaults") 58 (internal . "code for Emacs internals, build process, defaults")
diff --git a/lisp/help.el b/lisp/help.el
index 72a95244716..fa2a4f207e0 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -23,7 +23,7 @@
23 23
24;;; Commentary: 24;;; Commentary:
25 25
26;; This code implements GNU Emacs's on-line help system, the one invoked by 26;; This code implements GNU Emacs's built-in help system, the one invoked by
27;; `M-x help-for-help'. 27;; `M-x help-for-help'.
28 28
29;;; Code: 29;;; Code:
@@ -202,13 +202,13 @@ d PATTERN Show a list of functions, variables, and other items whose
202 documentation matches the PATTERN (a list of words or a regexp). 202 documentation matches the PATTERN (a list of words or a regexp).
203e Go to the *Messages* buffer which logs echo-area messages. 203e Go to the *Messages* buffer which logs echo-area messages.
204f FUNCTION Display documentation for the given function. 204f FUNCTION Display documentation for the given function.
205F COMMAND Show the on-line manual's section that describes the command. 205F COMMAND Show the Emacs manual's section that describes the command.
206g Display information about the GNU project. 206g Display information about the GNU project.
207h Display the HELLO file which illustrates various scripts. 207h Display the HELLO file which illustrates various scripts.
208i Start the Info documentation reader: read on-line manuals. 208i Start the Info documentation reader: read included manuals.
209I METHOD Describe a specific input method, or RET for current. 209I METHOD Describe a specific input method, or RET for current.
210k KEYS Display the full documentation for the key sequence. 210k KEYS Display the full documentation for the key sequence.
211K KEYS Show the on-line manual's section for the command bound to KEYS. 211K KEYS Show the Emacs manual's section for the command bound to KEYS.
212l Show last 300 input keystrokes (lossage). 212l Show last 300 input keystrokes (lossage).
213L LANG-ENV Describes a specific language environment, or RET for current. 213L LANG-ENV Describes a specific language environment, or RET for current.
214m Display documentation of current minor modes and current major mode, 214m Display documentation of current minor modes and current major mode,
@@ -218,7 +218,7 @@ p TOPIC Find packages matching a given topic keyword.
218P PACKAGE Describe the given Emacs Lisp package. 218P PACKAGE Describe the given Emacs Lisp package.
219r Display the Emacs manual in Info mode. 219r Display the Emacs manual in Info mode.
220s Display contents of current syntax table, plus explanations. 220s Display contents of current syntax table, plus explanations.
221S SYMBOL Show the section for the given symbol in the on-line manual 221S SYMBOL Show the section for the given symbol in the Info manual
222 for the programming language used in this buffer. 222 for the programming language used in this buffer.
223t Start the Emacs learn-by-doing tutorial. 223t Start the Emacs learn-by-doing tutorial.
224v VARIABLE Display the given variable's documentation and value. 224v VARIABLE Display the given variable's documentation and value.
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index 6aee713dd86..215b8d8358e 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -71,8 +71,8 @@
71;; For example: 71;; For example:
72;; (add-to-list 'auto-mode-alist '("\\.f\\'" . f90-mode)) 72;; (add-to-list 'auto-mode-alist '("\\.f\\'" . f90-mode))
73 73
74;; Once you have entered f90-mode, you may get more info by using 74;; Once you have entered f90-mode, you can get more info by using
75;; the command describe-mode (C-h m). For online help use 75;; the command describe-mode (C-h m). For help use
76;; C-h f <Name of function you want described>, or 76;; C-h f <Name of function you want described>, or
77;; C-h v <Name of variable you want described>. 77;; C-h v <Name of variable you want described>.
78 78
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el
index cedc2986eda..f32d4641af0 100644
--- a/lisp/progmodes/pascal.el
+++ b/lisp/progmodes/pascal.el
@@ -26,8 +26,8 @@
26;; ===== 26;; =====
27 27
28;; Emacs should enter Pascal mode when you find a Pascal source file. 28;; Emacs should enter Pascal mode when you find a Pascal source file.
29;; When you have entered Pascal mode, you may get more info by pressing 29;; When you have entered Pascal mode, you can get more info by pressing
30;; C-h m. You may also get online help describing various functions by: 30;; C-h m. You can also get help describing various functions by:
31;; C-h f <Name of function you want described> 31;; C-h f <Name of function you want described>
32 32
33;; If you want to customize Pascal mode to fit you better, you may add 33;; If you want to customize Pascal mode to fit you better, you may add
diff --git a/lisp/vc/ediff-mult.el b/lisp/vc/ediff-mult.el
index 9837c20b84d..56ff13fbbb6 100644
--- a/lisp/vc/ediff-mult.el
+++ b/lisp/vc/ediff-mult.el
@@ -140,7 +140,7 @@ Useful commands (type ? to hide them and free up screen):
140 uh/um:\tunmark all sessions marked for hiding/operation 140 uh/um:\tunmark all sessions marked for hiding/operation
141 n,SPC:\tnext session 141 n,SPC:\tnext session
142 p,DEL:\tprevious session 142 p,DEL:\tprevious session
143 E:\tbrowse Ediff on-line manual 143 E:\tbrowse Ediff manual
144 T:\ttoggle truncation of long file names 144 T:\ttoggle truncation of long file names
145 q:\tquit this session group 145 q:\tquit this session group
146") 146")
@@ -1464,7 +1464,7 @@ Useful commands:
1464 R in any Ediff session: display session registry 1464 R in any Ediff session: display session registry
1465 n,SPC: next session 1465 n,SPC: next session
1466 p,DEL: previous session 1466 p,DEL: previous session
1467 E: browse Ediff on-line manual 1467 E: browse Ediff manual
1468 q: bury registry 1468 q: bury registry
1469 1469
1470 1470
diff --git a/lisp/vc/ediff-ptch.el b/lisp/vc/ediff-ptch.el
index d1332351a74..bb6ab1062c1 100644
--- a/lisp/vc/ediff-ptch.el
+++ b/lisp/vc/ediff-ptch.el
@@ -735,7 +735,7 @@ The second problem might be due to an incompatibility among these settings:
735 ediff-patch-program = %S ediff-patch-options = %S 735 ediff-patch-program = %S ediff-patch-options = %S
736 ediff-backup-extension = %S ediff-backup-specs = %S 736 ediff-backup-extension = %S ediff-backup-specs = %S
737 737
738See Ediff on-line manual for more details on these variables. 738See Ediff manual for more details on these variables.
739In particular, check the documentation for `ediff-backup-specs'. 739In particular, check the documentation for `ediff-backup-specs'.
740 740
741In any of the above cases, Ediff doesn't compare files automatically. 741In any of the above cases, Ediff doesn't compare files automatically.
diff --git a/lisp/vc/ediff.el b/lisp/vc/ediff.el
index 927a3ba7fb6..5418039143f 100644
--- a/lisp/vc/ediff.el
+++ b/lisp/vc/ediff.el
@@ -64,7 +64,7 @@
64;; compressed files. Details are given below. 64;; compressed files. Details are given below.
65 65
66;; Finally, Ediff supports directory-level comparison, merging and patching. 66;; Finally, Ediff supports directory-level comparison, merging and patching.
67;; See the on-line manual for details. 67;; See the Ediff manual for details.
68 68
69;; This package builds upon the ideas borrowed from emerge.el and several 69;; This package builds upon the ideas borrowed from emerge.el and several
70;; Ediff's functions are adaptations from emerge.el. Much of the functionality 70;; Ediff's functions are adaptations from emerge.el. Much of the functionality