summarylogtreecommitdiffstats
path: root/eukleides-1.5.4.patch
blob: 1a477b3f1f40631fcfe458d918e9e5e930ac1615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--- doc/eukleides.texi	2010-04-27 06:31:00 UTC
+++ doc/eukleides.texi	
@@ -6,12 +6,14 @@ 
 
 % ------------------------------------------------------------------------------
 
+@iftex
 \def\LaTeX{L\kern-.34em\raise.49ex\hbox{\sevenrm A}\kern-.18em\TeX}
 \def\mdeg{$^\circ$}
 \font\degfont=cmtt8
 \def\deg{\raise.7ex\hbox{\degfont o}}
 \def\exm#1{\noindent{\textit Example:}\quad{\texttt #1}}
 \def\exmp{\noindent{\textit Example:}}
+@end iftex
 
 % ------------------------------------------------------------------------------
 
--- src/common/triangle.c	2010-04-27 06:31:00.000000000 +0000
+++ src/common/triangle.c	2022-10-07 13:53:08.065041358 +0000
@@ -26,9 +26,9 @@
 
 #define STO(addr) (POP(_symbol))->content->value.point = (addr)
 
-_point *A, *B, *C;
+static _point *A, *B, *C;
 
-double a, x, y;
+static double a, x, y;
 
 void assign_A_B(int p)
 {
--- src/common/quadrilateral.c	2010-04-27 06:31:00.000000000 +0000
+++ src/common/quadrilateral.c	2022-10-07 13:57:47.751483202 +0000
@@ -26,9 +26,9 @@
 
 #define STO(addr) (POP(_symbol))->content->value.point = (addr)
 
-double l, m, x, y, u, v;
+static double l, m, x, y, u, v;
 
-_point *A, *B, *C, *D;
+static _point *A, *B, *C, *D;
 
 void assign(int p, int s)
 {