]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/misc/calc.texi: Improve indexing.
authorStefan Kangas <stefankangas@gmail.com>
Sat, 13 Apr 2024 21:45:28 +0000 (23:45 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 22 Apr 2024 18:35:08 +0000 (20:35 +0200)
(cherry picked from commit bbc5204a0f3ebea32429bd01207284eead23bf22)

doc/misc/calc.texi

index ac2ac5a0f91a3d1685857568f175abf2a068cd96..f7b7e277b58cde65aead37bd06af2ff8b05704c7 100644 (file)
@@ -31468,6 +31468,7 @@ newline so that mode annotations will appear on lines by themselves.
 @node Programming
 @chapter Programming
 
+@cindex Programming Calc
 @noindent
 There are several ways to ``program'' the Emacs Calculator, depending
 on the nature of the problem you need to solve.
@@ -31596,7 +31597,7 @@ following sections.
 
 @noindent
 @kindex X
-@cindex Programming with keyboard macros
+@cindex Programming Calc, with keyboard macros
 @cindex Keyboard macros
 The easiest way to ``program'' the Emacs Calculator is to use standard
 keyboard macros.  Press @w{@kbd{C-x (}} to begin recording a macro.  From
@@ -31997,7 +31998,7 @@ The @kbd{m m} command saves the last invocation macro defined by
 @noindent
 @kindex Z F
 @pindex calc-user-define-formula
-@cindex Programming with algebraic formulas
+@cindex Programming Calc, with algebraic formulas
 Another way to create a new Calculator command uses algebraic formulas.
 The @kbd{Z F} (@code{calc-user-define-formula}) command stores the
 formula at the top of the stack as the definition for a key.  This
@@ -32106,6 +32107,7 @@ in symbolic form without ever activating the @code{deriv} function.  Press
 @node Lisp Definitions
 @section Programming with Lisp
 
+@section Programming Calc, with Lisp
 @noindent
 The Calculator can be programmed quite extensively in Lisp.  All you
 do is write a normal Lisp function definition, but with @code{defmath}
@@ -32851,6 +32853,7 @@ a large argument, a simpler program like the first one shown is fine.
 @node Calling Calc from Your Programs
 @subsection Calling Calc from Your Lisp Programs
 
+@cindex Calling Calc from Lisp
 @noindent
 A later section (@pxref{Internals}) gives a full description of
 Calc's internal Lisp functions.  It's not hard to call Calc from