]> git.donarmstrong.com Git - lilypond.git/blob - debian/patches/0009-Fix-r5rs.texi-makeinfo-failure-by-applying-changes-f.patch
Bundle our own private copy of guile-1.8
[lilypond.git] / debian / patches / 0009-Fix-r5rs.texi-makeinfo-failure-by-applying-changes-f.patch
1 From 662aacccb58d90e41547e4aae2bf19f5e174087d Mon Sep 17 00:00:00 2001
2 From: Dimitri John Ledkov <xnox@ubuntu.com>
3 Date: Sun, 9 Feb 2014 12:45:45 -0600
4 Subject: Fix r5rs.texi makeinfo failure by applying changes from guile-2.0.
5
6 [rlb@defaultvalue.org: adjust commit message.]
7
8 Bug-Debian: http://bugs.debian.org/711029
9 ---
10  doc/r5rs/r5rs.texi | 11 +++++------
11  1 file changed, 5 insertions(+), 6 deletions(-)
12
13 diff --git a/guile18/doc/r5rs/r5rs.texi b/guile18/doc/r5rs/r5rs.texi
14 index 605a976..775c930 100644
15 --- a/guile18/doc/r5rs/r5rs.texi
16 +++ b/guile18/doc/r5rs/r5rs.texi
17 @@ -106,7 +106,6 @@
18  @author C. H@sc{ANSON} 
19  @author K. M. P@sc{ITMAN} 
20  @author M. W@sc{AND} 
21 -@author 
22  
23  
24  @c  {\it Dedicated to the Memory of ALGOL 60}
25 @@ -116,7 +115,7 @@
26  
27  
28  
29 -@unnumbered Summary
30 +@majorheading Summary
31  
32  
33  The report gives a defining description of the programming language
34 @@ -4429,9 +4428,9 @@ all.
35  These procedures are part of every implementation that supports
36  @c %R4%%
37  general
38 -real numbers; they compute the usual transcendental functions.  @samp{Log}
39 +real numbers; they compute the usual transcendental functions.  @samp{log}
40  computes the natural logarithm of @var{z} (not the base ten logarithm).
41 -@samp{Asin}, @samp{acos}, and @samp{atan} compute arcsine (sin^-1),
42 +@samp{asin}, @samp{acos}, and @samp{atan} compute arcsine (sin^-1),
43  arccosine (cos^-1), and arctangent (tan^-1), respectively.
44  The two-argument variant of @samp{atan} computes @t{(angle
45  (make-rectangular @var{x} @var{y}))} (see below), even in implementations
46 @@ -4446,7 +4445,7 @@ With log defined this way, the values of sin^-1 z, cos^-1 z,
47  and tan^-1 z are according to the following formulae:
48  
49  
50 -@center sin^-1 z = -i log (i z + sqrt1 - z^2)
51 +@center sin^-1 z = -i log (i z + sqrt(1 - z^2))
52  
53  
54  
55 @@ -5988,7 +5987,7 @@ unspecified value.
56  
57  
58  
59 -Vectors are heterogenous structures whose elements are indexed
60 +Vectors are heterogeneous structures whose elements are indexed
61  by integers.  A vector typically occupies less space than a list
62  of the same length, and the average time required to access a randomly
63  chosen element is typically less for the vector than for the list.