aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2019-12-29 15:41:52 -0800
committerGlenn Morris2019-12-29 15:41:52 -0800
commit219d47893aef0da1dc42f0c5445df68a2abf480a (patch)
treee0b384f6361993680b21d32d576b25a79bcd1fce
parent4bbfd2b42f73f35da6c5b338239308428809c5f7 (diff)
downloademacs-219d47893aef0da1dc42f0c5445df68a2abf480a.tar.gz
emacs-219d47893aef0da1dc42f0c5445df68a2abf480a.zip
Fixes for makeinfo 4.13
* doc/lispref/customize.texi (Variable Definitions): Fix xref. * doc/lispref/internals.texi (Writing Emacs Primitives) (Module Values): Follow xref with comma.
-rw-r--r--doc/lispref/customize.texi3
-rw-r--r--doc/lispref/internals.texi4
2 files changed, 3 insertions, 4 deletions
diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi
index b19feaf977f..a44446b1319 100644
--- a/doc/lispref/customize.texi
+++ b/doc/lispref/customize.texi
@@ -431,8 +431,7 @@ the build-time context. This also has the side-effect that the
431@kindex local@r{, @code{defcustom} keyword} 431@kindex local@r{, @code{defcustom} keyword}
432If the @var{value} is @code{t}, mark @var{option} as automatically 432If the @var{value} is @code{t}, mark @var{option} as automatically
433buffer-local; if the value is @code{permanent}, also set @var{option}s 433buffer-local; if the value is @code{permanent}, also set @var{option}s
434@code{permanent-local} property to @code{t}. @xref {Creating 434@code{permanent-local} property to @code{t}. @xref{Creating Buffer-Local}.
435Buffer-Local}.
436 435
437@item :risky @var{value} 436@item :risky @var{value}
438@kindex risky@r{, @code{defcustom} keyword} 437@kindex risky@r{, @code{defcustom} keyword}
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index 1d03cbd085b..36d32ffddab 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -972,7 +972,7 @@ The name of the variable to be used by Lisp programs.
972The name of the variable in the C sources. 972The name of the variable in the C sources.
973@item doc 973@item doc
974The documentation for the variable, as a C 974The documentation for the variable, as a C
975comment. @xref{Documentation Basics} for more details. 975comment. @xref{Documentation Basics}, for more details.
976@end table 976@end table
977 977
978 By convention, when defining variables of a ``native'' type 978 By convention, when defining variables of a ``native'' type
@@ -1647,7 +1647,7 @@ little-endian magnitude of the return value.
1647 1647
1648The following example uses the GNU Multiprecision Library (GMP) to 1648The following example uses the GNU Multiprecision Library (GMP) to
1649calculate the next probable prime after a given integer. 1649calculate the next probable prime after a given integer.
1650@xref{Top,,,gmp} for a general overview of GMP, and @pxref{Integer 1650@xref{Top,,,gmp}, for a general overview of GMP, and @pxref{Integer
1651Import and Export,,,gmp} for how to convert the @code{magnitude} array 1651Import and Export,,,gmp} for how to convert the @code{magnitude} array
1652to and from GMP @code{mpz_t} values. 1652to and from GMP @code{mpz_t} values.
1653 1653