aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorMichael Albinus2018-02-23 15:30:19 +0100
committerMichael Albinus2018-02-23 15:30:19 +0100
commit2dc24d5536abce1eb252dc2695a22371227166c5 (patch)
tree5691caa876fd1c44d05719226684aa11ce0f4b45 /doc/lispintro
parent76f5242838c84bcaf5003b18a31104114930f197 (diff)
downloademacs-2dc24d5536abce1eb252dc2695a22371227166c5.tar.gz
emacs-2dc24d5536abce1eb252dc2695a22371227166c5.zip
Fix @findex and @vindex entries in manuals
* doc/emacs/building.texi: * doc/emacs/calendar.texi: * doc/emacs/cmdargs.texi: * doc/emacs/mini.texi: * doc/emacs/misc.texi: * doc/emacs/trouble.texi: * doc/emacs/windows.texi: * doc/lispintro/emacs-lisp-intro.texi: * doc/lispref/edebug.texi: * doc/lispref/frames.texi: * doc/lispref/os.texi: * doc/lispref/windows.texi: * doc/misc/cc-mode.texi: * doc/misc/dired-x.texi: * doc/misc/ediff.texi: * doc/misc/mh-e.texi: * doc/misc/pcl-cvs.texi: * doc/misc/reftex.texi: * doc/misc/sc.texi: * doc/misc/vhdl-mode.texi: * doc/misc/viper.texi: Fix @findex and @vindex entries.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 770478ddf91..0efaecc1aa7 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -1716,7 +1716,7 @@ function definition, and vice versa.
1716@unnumberedsubsec @code{fill-column}, an Example Variable 1716@unnumberedsubsec @code{fill-column}, an Example Variable
1717@end ifnottex 1717@end ifnottex
1718 1718
1719@findex fill-column, @r{an example variable} 1719@findex fill-column@r{, an example variable}
1720@cindex Example variable, @code{fill-column} 1720@cindex Example variable, @code{fill-column}
1721@cindex Variable, example of, @code{fill-column} 1721@cindex Variable, example of, @code{fill-column}
1722The variable @code{fill-column} illustrates a symbol with a value 1722The variable @code{fill-column} illustrates a symbol with a value
@@ -3839,7 +3839,7 @@ message @samp{5 is greater than 4!} will be printed.
3839@noindent 3839@noindent
3840(The function @code{>} tests whether its first argument is greater than 3840(The function @code{>} tests whether its first argument is greater than
3841its second argument and returns true if it is.) 3841its second argument and returns true if it is.)
3842@findex > (greater than) 3842@findex > @r{(greater than)}
3843 3843
3844Of course, in actual use, the test in an @code{if} expression will not 3844Of course, in actual use, the test in an @code{if} expression will not
3845be fixed for all time as it is by the expression @code{(> 5 4)}. 3845be fixed for all time as it is by the expression @code{(> 5 4)}.
@@ -4552,7 +4552,7 @@ buffers. Later, we will study other functions.
4552@node Finding More 4552@node Finding More
4553@section Finding More Information 4553@section Finding More Information
4554 4554
4555@findex describe-function, @r{introduced} 4555@findex describe-function@r{, introduced}
4556@cindex Find function documentation 4556@cindex Find function documentation
4557In this walk-through, I will describe each new function as we come to 4557In this walk-through, I will describe each new function as we come to
4558it, sometimes in detail and sometimes briefly. If you are interested, 4558it, sometimes in detail and sometimes briefly. If you are interested,
@@ -5564,7 +5564,7 @@ outline of the function:
5564 5564
5565@node insert-buffer interactive 5565@node insert-buffer interactive
5566@subsection The Interactive Expression in @code{insert-buffer} 5566@subsection The Interactive Expression in @code{insert-buffer}
5567@findex interactive, @r{example use of} 5567@findex interactive@r{, example use of}
5568 5568
5569In @code{insert-buffer}, the argument to the @code{interactive} 5569In @code{insert-buffer}, the argument to the @code{interactive}
5570declaration has two parts, an asterisk, @samp{*}, and @samp{bInsert 5570declaration has two parts, an asterisk, @samp{*}, and @samp{bInsert
@@ -5881,8 +5881,8 @@ find and use again and again.
5881 5881
5882@node New insert-buffer 5882@node New insert-buffer
5883@subsection New Body for @code{insert-buffer} 5883@subsection New Body for @code{insert-buffer}
5884@findex insert-buffer, new version body 5884@findex insert-buffer@r{, new version body}
5885@findex new version body for insert-buffer 5885@cindex new version body for insert-buffer
5886 5886
5887The body in the GNU Emacs 22 version is more confusing than the original. 5887The body in the GNU Emacs 22 version is more confusing than the original.
5888 5888
@@ -6734,8 +6734,8 @@ Or can you write the function without them?
6734 6734
6735@node car cdr & cons 6735@node car cdr & cons
6736@chapter @code{car}, @code{cdr}, @code{cons}: Fundamental Functions 6736@chapter @code{car}, @code{cdr}, @code{cons}: Fundamental Functions
6737@findex car, @r{introduced} 6737@findex car@r{, introduced}
6738@findex cdr, @r{introduced} 6738@findex cdr@r{, introduced}
6739 6739
6740In Lisp, @code{car}, @code{cdr}, and @code{cons} are fundamental 6740In Lisp, @code{car}, @code{cdr}, and @code{cons} are fundamental
6741functions. The @code{cons} function is used to construct lists, and 6741functions. The @code{cons} function is used to construct lists, and
@@ -6900,7 +6900,7 @@ Emacs Lisp Reference Manual}.)
6900 6900
6901@node cons 6901@node cons
6902@section @code{cons} 6902@section @code{cons}
6903@findex cons, @r{introduced} 6903@findex cons@r{, introduced}
6904 6904
6905The @code{cons} function constructs lists; it is the inverse of 6905The @code{cons} function constructs lists; it is the inverse of
6906@code{car} and @code{cdr}. For example, @code{cons} can be used to make 6906@code{car} and @code{cdr}. For example, @code{cons} can be used to make
@@ -8715,7 +8715,7 @@ example-list
8715@noindent 8715@noindent
8716Now, we can add a new element on to this list by evaluating the 8716Now, we can add a new element on to this list by evaluating the
8717following expression: 8717following expression:
8718@findex push, @r{example} 8718@findex push@r{, example}
8719 8719
8720@smallexample 8720@smallexample
8721(push "a third clause" example-list) 8721(push "a third clause" example-list)
@@ -8762,13 +8762,13 @@ element of the kill ring---this means that since the @sc{cdr} of the
8762next to last element is the last element of the kill ring, it will set 8762next to last element is the last element of the kill ring, it will set
8763the last element of the kill ring. 8763the last element of the kill ring.
8764 8764
8765@findex nthcdr, @r{example} 8765@findex nthcdr@r{, example}
8766The @code{nthcdr} function works by repeatedly taking the @sc{cdr} of a 8766The @code{nthcdr} function works by repeatedly taking the @sc{cdr} of a
8767list---it takes the @sc{cdr} of the @sc{cdr} of the @sc{cdr} 8767list---it takes the @sc{cdr} of the @sc{cdr} of the @sc{cdr}
8768@dots{} It does this @var{N} times and returns the results. 8768@dots{} It does this @var{N} times and returns the results.
8769(@xref{nthcdr, , @code{nthcdr}}.) 8769(@xref{nthcdr, , @code{nthcdr}}.)
8770 8770
8771@findex setcdr, @r{example} 8771@findex setcdr@r{, example}
8772Thus, if we had a four element list that was supposed to be three 8772Thus, if we had a four element list that was supposed to be three
8773elements long, we could set the @sc{cdr} of the next to last element 8773elements long, we could set the @sc{cdr} of the next to last element
8774to @code{nil}, and thereby shorten the list. (If you set the last 8774to @code{nil}, and thereby shorten the list. (If you set the last
@@ -17177,8 +17177,8 @@ file, as I intended, I accidentally set the width for filled text,
17177almost always to a width I did not want. Since I hardly ever reset my 17177almost always to a width I did not want. Since I hardly ever reset my
17178default width, I simply unbound the key. 17178default width, I simply unbound the key.
17179 17179
17180@findex list-buffers, @r{rebound} 17180@findex list-buffers@r{, rebound}
17181@findex buffer-menu, @r{bound to key} 17181@findex buffer-menu@r{, bound to key}
17182@need 1250 17182@need 1250
17183The following rebinds an existing key: 17183The following rebinds an existing key:
17184 17184