diff options
| author | Eli Zaretskii | 2018-05-23 19:31:38 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-05-23 19:31:38 +0300 |
| commit | e7952bdfc87aa333dfc564658bfbce6f1fbfc851 (patch) | |
| tree | 4c73b02a12d76353d2ce1c128ff9dc25f510a17b /doc | |
| parent | a89795944b7291c24a5cffd82365dde600f598d5 (diff) | |
| download | emacs-e7952bdfc87aa333dfc564658bfbce6f1fbfc851.tar.gz emacs-e7952bdfc87aa333dfc564658bfbce6f1fbfc851.zip | |
Fix some cross-references in emacs-lisp-intro.texi
* doc/lispintro/emacs-lisp-intro.texi (List Processing)
(Determining the Element, graph-body-print): Fix cross-references
to subsections that don't exist in the printed version of the
manual. (Bug#31567)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index e4ebbe234ad..60811353713 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -1037,7 +1037,14 @@ putting them between parentheses. The parentheses mark the boundaries | |||
| 1037 | of the list. Sometimes a list is preceded by an apostrophe @samp{'}, | 1037 | of the list. Sometimes a list is preceded by an apostrophe @samp{'}, |
| 1038 | called a @dfn{single-quote} in Lisp.@footnote{A single-quote is an | 1038 | called a @dfn{single-quote} in Lisp.@footnote{A single-quote is an |
| 1039 | abbreviation for the special form @code{quote}; you need not think | 1039 | abbreviation for the special form @code{quote}; you need not think |
| 1040 | about special forms now. @xref{Complications}.} Lists are the basis | 1040 | about special forms now. |
| 1041 | @ifnottex | ||
| 1042 | @xref{Complications}. | ||
| 1043 | @end ifnottex | ||
| 1044 | @iftex | ||
| 1045 | @xref{Lisp Interpreter}. | ||
| 1046 | @end iftex | ||
| 1047 | } Lists are the basis | ||
| 1041 | of Lisp. | 1048 | of Lisp. |
| 1042 | 1049 | ||
| 1043 | @menu | 1050 | @menu |
| @@ -16400,9 +16407,9 @@ Install @code{graph-symbol}, @code{graph-blank}, | |||
| 16400 | @iftex | 16407 | @iftex |
| 16401 | @ref{Readying a Graph, , Readying a Graph}, | 16408 | @ref{Readying a Graph, , Readying a Graph}, |
| 16402 | @end iftex | 16409 | @end iftex |
| 16403 | @ifinfo | 16410 | @ifnottex |
| 16404 | @ref{Columns of a graph}, | 16411 | @ref{Columns of a graph}, |
| 16405 | @end ifinfo | 16412 | @end ifnottex |
| 16406 | and @code{graph-body-print}. | 16413 | and @code{graph-body-print}. |
| 16407 | 16414 | ||
| 16408 | @need 800 | 16415 | @need 800 |
| @@ -19181,11 +19188,14 @@ Local variables can only be accessed | |||
| 19181 | within the @code{let} that defines them or the function that specifies | 19188 | within the @code{let} that defines them or the function that specifies |
| 19182 | them in an argument list (and within expressions called by them). | 19189 | them in an argument list (and within expressions called by them). |
| 19183 | 19190 | ||
| 19184 | @ignore | ||
| 19185 | @c texi2dvi fails when the name of the section is within ifnottex ... | 19191 | @c texi2dvi fails when the name of the section is within ifnottex ... |
| 19192 | @ifnottex | ||
| 19186 | (@xref{Prevent confusion, , @code{let} Prevents Confusion}, and | 19193 | (@xref{Prevent confusion, , @code{let} Prevents Confusion}, and |
| 19194 | @end ifnottex | ||
| 19195 | @iftex | ||
| 19196 | (@xref{Permanent Installation, , @code{let} Prevents Confusion}, and | ||
| 19197 | @end iftex | ||
| 19187 | @ref{defun, , The @code{defun} Macro}.) | 19198 | @ref{defun, , The @code{defun} Macro}.) |
| 19188 | @end ignore | ||
| 19189 | 19199 | ||
| 19190 | @node yank | 19200 | @node yank |
| 19191 | @appendixsec @code{yank} | 19201 | @appendixsec @code{yank} |