bug-gmp
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch for making HTML docs with makeinfo from mpfr.texi


From: Richard Dawe
Subject: Patch for making HTML docs with makeinfo from mpfr.texi
Date: Sun, 02 Jun 2002 09:55:00 +0100

Hello.

Please find below a patch to fix mpfr.texi to allow HTML docs
to be made from it using:

    makeinfo --html mpfr.texi

There's also a ChangeLog entry below.

Regards,

--
Richard Dawe [ http://www.phekda.freeserve.co.uk/richdawe/ ]

2002-06-02  Richard Dawe  <address@hidden>

        * mpfr/mpfr.texi: Use @ifnottex/@end iffnotex instead
        of @ifinfo/@end ifinfo.

--- mpfr.texi.orig      2002-06-01 13:37:48.000000000 +0000
+++ mpfr.texi   2002-06-01 13:38:00.000000000 +0000
@@ -8,13 +8,13 @@
 @end iftex
 @comment %**end of header
 
address@hidden
address@hidden
 @format
 START-INFO-DIR-ENTRY
 * mpfr: (mpfr.info).               Multiple Precision Floating-Point Reliable 
Library.
 END-INFO-DIR-ENTRY
 @end format
address@hidden ifinfo
address@hidden ifnottex
 
 @c smallbook
 
@@ -29,7 +29,7 @@ END-INFO-DIR-ENTRY
 @c ==> following paragraph; update date, too.
 
 
address@hidden
address@hidden
 This file documents MPFR, a library for reliable multiple precision 
floating-point arithmetic
 
 Copyright (C) 1999-2002, Free Software Foundation.
@@ -54,7 +54,7 @@ Permission is granted to copy and distri
 into another language, under the above conditions for modified versions,
 except that this permission notice may be stated in a translation approved
 by the Foundation.
address@hidden ifinfo
address@hidden ifnottex
 
 @setchapternewpage on
 @titlepage
@@ -102,7 +102,7 @@ by the Foundation.
 @end titlepage
 @headings double
 
address@hidden
address@hidden
 @node Top, Copying, (dir), (dir)
 
 @top MPFR
@@ -110,7 +110,7 @@ by the Foundation.
 This manual documents how to install and use the Multiple Precision
 Floating-Point Reliable Library, version 2.0.1
 
address@hidden ifinfo
address@hidden ifnottex
 
 @menu
 * Copying::                   GMP Copying Conditions (LGPL).
@@ -906,11 +906,11 @@ and negative if @var{rop} is smaller tha
 @deftypefunx int mpfr_mul_ui (mpfr_t @var{rop}, mpfr_t @var{op1}, unsigned 
long int @var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_mul_z (mpfr_t @var{rop}, mpfr_t @var{op1}, mpz_t 
@var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_mul_q (mpfr_t @var{rop}, mpfr_t @var{op1}, mpq_t 
@var{op2}, mp_rnd_t @var{rnd})
address@hidden
address@hidden
 Set @var{rop} to @var{op1} times @var{op2} rounded in the direction @var{rnd}.
 Return 0 if the result is exact, a positive value if 
 @var{rop}>@address@hidden, a negative value otherwise.
address@hidden ifinfo
address@hidden ifnottex
 @tex
 Set @var{rop} to address@hidden \times @var{op2}$ rounded in the direction 
@var{rnd}.
 Return 0 if the result is exact, a positive value if 
@@ -931,9 +931,9 @@ and a negative value otherwise.
 
 @deftypefun int mpfr_sqrt (mpfr_t @var{rop}, mpfr_t @var{op}, mp_rnd_t 
@var{rnd})
 @deftypefunx int mpfr_sqrt_ui (mpfr_t @var{rop}, unsigned long int @var{op}, 
mp_rnd_t @var{rnd})
address@hidden
address@hidden
 Set @var{rop} to the square root of @var{op} rounded in the direction 
@var{rnd}.
address@hidden ifinfo
address@hidden ifnottex
 @tex
 Set @var{rop} to address@hidden rounded in the direction @var{rnd}.
 @end tex
@@ -988,9 +988,9 @@ the absolute value of @var{op}, and a ne
 @deftypefun int mpfr_mul_2exp (mpfr_t @var{rop}, mpfr_t @var{op1}, unsigned 
long int @var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_mul_2ui (mpfr_t @var{rop}, mpfr_t @var{op1}, unsigned 
long int @var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_mul_2si (mpfr_t @var{rop}, mpfr_t @var{op1}, long int 
@var{op2}, mp_rnd_t @var{rnd})
address@hidden
address@hidden
 Set @var{rop} to @var{op1} times 2 raised to @var{op2}
address@hidden ifinfo
address@hidden ifnottex
 @tex
 Set @var{rop} to address@hidden \times 2^{op2}$
 @end tex
@@ -1005,9 +1005,9 @@ you should use @code{mpfr_mul_2ui} (or @
 @deftypefun int mpfr_div_2exp (mpfr_t @var{rop}, mpfr_t @var{op1}, unsigned 
long int @var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_div_2ui (mpfr_t @var{rop}, mpfr_t @var{op1}, unsigned 
long int @var{op2}, mp_rnd_t @var{rnd})
 @deftypefunx int mpfr_div_2si (mpfr_t @var{rop}, mpfr_t @var{op1}, long int 
@var{op2}, mp_rnd_t @var{rnd})
address@hidden
address@hidden
 Set @var{rop} to @var{op1} divided by 2 raised to @var{op2}
address@hidden ifinfo
address@hidden ifnottex
 @tex
 Set @var{rop} to address@hidden/2^{op2}$
 @end tex
@@ -1028,11 +1028,11 @@ you should use @code{mpfr_div_2ui} (or @
 @deftypefun int mpfr_cmp (mpfr_t @var{op1}, mpfr_t @var{op2})
 @deftypefunx int mpfr_cmp_ui (mpfr_t @var{op1}, unsigned long int @var{op2})
 @deftypefunx int mpfr_cmp_si (mpfr_t @var{op1}, signed long int @var{op2})
address@hidden
address@hidden
 Compare @var{op1} and @var{op2}.  Return a positive value if @var{op1} >
 @var{op2}, zero if @var{op1} = @var{op2}, and a negative value if @var{op1} <
 @var{op2}.
address@hidden ifinfo
address@hidden ifnottex
 @tex
 Compare @var{op1} and @var{op2}.  Return a positive value if address@hidden >
 @var{op2}$, zero if address@hidden = @var{op2}$, and a negative value if 
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]