aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2020-01-23 02:25:31 +0100
committerStefan Kangas2020-01-23 14:44:27 +0100
commita15a0cf69ede156df6f3441ffbfb1cb9be24909b (patch)
treedb959b1f5bf7a7195923921fd583fac03aac6e5f
parent8fbc2fd492b714c612a96add0b9572d87eb4e785 (diff)
downloademacs-a15a0cf69ede156df6f3441ffbfb1cb9be24909b.tar.gz
emacs-a15a0cf69ede156df6f3441ffbfb1cb9be24909b.zip
Prefer saying "Info manual" to "info page" in docs
Pointed out by Eli Zaretskii in: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=39215#14 * doc/emacs/Makefile.in: * doc/lispintro/Makefile.in: * doc/lispref/Makefile.in: * doc/misc/Makefile.in: * lisp/dired-x.el (top-level): * lisp/gnus/gnus-sum.el (gnus-summary-mode): * lisp/progmodes/cperl-mode.el (cperl-info-page): Doc fix; prefer saying "Info manual" over "info page".
-rw-r--r--doc/emacs/Makefile.in2
-rw-r--r--doc/lispintro/Makefile.in2
-rw-r--r--doc/lispref/Makefile.in2
-rw-r--r--doc/misc/Makefile.in2
-rw-r--r--lisp/dired-x.el4
-rw-r--r--lisp/gnus/gnus-sum.el2
-rw-r--r--lisp/progmodes/cperl-mode.el2
7 files changed, 8 insertions, 8 deletions
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in
index cbda862c4d7..53b7d074512 100644
--- a/doc/emacs/Makefile.in
+++ b/doc/emacs/Makefile.in
@@ -246,7 +246,7 @@ install-ps: ps
246 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ 246 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \
247 done 247 done
248 248
249## Top-level Makefile installs the info pages. 249## Top-level Makefile installs the Info manuals.
250install-doc: install-dvi install-html install-pdf install-ps 250install-doc: install-dvi install-html install-pdf install-ps
251 251
252 252
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in
index 3b668f5b347..7a2b6f0a580 100644
--- a/doc/lispintro/Makefile.in
+++ b/doc/lispintro/Makefile.in
@@ -145,7 +145,7 @@ install-ps: ps
145 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ 145 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \
146 done 146 done
147 147
148## Top-level Makefile installs the info pages. 148## Top-level Makefile installs the Info manuals.
149install-doc: install-dvi install-html install-pdf install-ps 149install-doc: install-dvi install-html install-pdf install-ps
150 150
151 151
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in
index 1705852f990..bd650091116 100644
--- a/doc/lispref/Makefile.in
+++ b/doc/lispref/Makefile.in
@@ -206,7 +206,7 @@ install-ps: ps
206 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ 206 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \
207 done 207 done
208 208
209## Top-level Makefile installs the info pages. 209## Top-level Makefile installs the Info manuals.
210install-doc: install-dvi install-html install-pdf install-ps 210install-doc: install-dvi install-html install-pdf install-ps
211 211
212 212
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index 0a26a26ee32..7f536ad9529 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -267,7 +267,7 @@ install-ps: ps
267 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ 267 ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \
268 done 268 done
269 269
270## Top-level Makefile installs the info pages. 270## Top-level Makefile installs the Info manuals.
271install-doc: install-dvi install-html install-pdf install-ps 271install-doc: install-dvi install-html install-pdf install-ps
272 272
273 273
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 841434fdcbe..623a1dd3255 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -27,7 +27,7 @@
27;;; Commentary: 27;;; Commentary:
28 28
29;; This is based on Sebastian Kremer's excellent dired-x.el (Dired Extra), 29;; This is based on Sebastian Kremer's excellent dired-x.el (Dired Extra),
30;; version 1.191, adapted for GNU Emacs. See the `dired-x' info pages. 30;; version 1.191, adapted for GNU Emacs. See the `dired-x' Info manual.
31 31
32;; At load time dired-x.el will install itself and bind some dired keys. 32;; At load time dired-x.el will install itself and bind some dired keys.
33;; Some dired.el and dired-aux.el functions have extra features if 33;; Some dired.el and dired-aux.el functions have extra features if
@@ -35,7 +35,7 @@
35 35
36;; User customization: M-x customize-group RET dired-x RET. 36;; User customization: M-x customize-group RET dired-x RET.
37 37
38;; *Please* see the `dired-x' info pages for more details. 38;; *Please* see the `dired-x' Info manual for more details.
39 39
40 40
41;;; Code: 41;;; Code:
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index a59e8b359db..a40e563e755 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -3124,7 +3124,7 @@ follow up an article, type `\\[gnus-summary-followup]'. To mail a reply to the
3124of an article, type `\\[gnus-summary-reply]'. 3124of an article, type `\\[gnus-summary-reply]'.
3125 3125
3126There are approx. one gazillion commands you can execute in this 3126There are approx. one gazillion commands you can execute in this
3127buffer; read the info pages for more information (`\\[gnus-info-find-node]'). 3127buffer; read the Info manual for more information (`\\[gnus-info-find-node]').
3128 3128
3129The following commands are available: 3129The following commands are available:
3130 3130
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index 53a4c680487..5fee2df5863 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -446,7 +446,7 @@ May require patched `imenu' and `imenu-go'. Obsolete."
446 :group 'cperl-help-system) 446 :group 'cperl-help-system)
447 447
448(defcustom cperl-info-page "perl" 448(defcustom cperl-info-page "perl"
449 "Name of the info page containing perl docs. 449 "Name of the Info manual containing perl docs.
450Older version of this page was called `perl5', newer `perl'." 450Older version of this page was called `perl5', newer `perl'."
451 :type 'string 451 :type 'string
452 :group 'cperl-help-system) 452 :group 'cperl-help-system)