diff options
| author | Glenn Morris | 2019-12-29 15:41:52 -0800 |
|---|---|---|
| committer | Glenn Morris | 2019-12-29 15:41:52 -0800 |
| commit | 219d47893aef0da1dc42f0c5445df68a2abf480a (patch) | |
| tree | e0b384f6361993680b21d32d576b25a79bcd1fce | |
| parent | 4bbfd2b42f73f35da6c5b338239308428809c5f7 (diff) | |
| download | emacs-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.texi | 3 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 4 |
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} |
| 432 | If the @var{value} is @code{t}, mark @var{option} as automatically | 432 | If the @var{value} is @code{t}, mark @var{option} as automatically |
| 433 | buffer-local; if the value is @code{permanent}, also set @var{option}s | 433 | buffer-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}. |
| 435 | Buffer-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. | |||
| 972 | The name of the variable in the C sources. | 972 | The name of the variable in the C sources. |
| 973 | @item doc | 973 | @item doc |
| 974 | The documentation for the variable, as a C | 974 | The documentation for the variable, as a C |
| 975 | comment. @xref{Documentation Basics} for more details. | 975 | comment. @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 | ||
| 1648 | The following example uses the GNU Multiprecision Library (GMP) to | 1648 | The following example uses the GNU Multiprecision Library (GMP) to |
| 1649 | calculate the next probable prime after a given integer. | 1649 | calculate 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 |
| 1651 | Import and Export,,,gmp} for how to convert the @code{magnitude} array | 1651 | Import and Export,,,gmp} for how to convert the @code{magnitude} array |
| 1652 | to and from GMP @code{mpz_t} values. | 1652 | to and from GMP @code{mpz_t} values. |
| 1653 | 1653 | ||