From f56b40a316559df11fbcfe0a4119c8a156247d89 Mon Sep 17 00:00:00 2001
From: Richard Kreckel <kreckel@ginac.de>
Date: Thu, 10 Jan 2008 17:22:54 +0000
Subject: [PATCH] 	* Fix typos in dead code introduced in CLN 1.1.0.

---
 src/float/transcendental/cl_F_cosh.cc     | 2 +-
 src/float/transcendental/cl_F_coshsinh.cc | 4 ++--
 src/float/transcendental/cl_F_sinh.cc     | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/float/transcendental/cl_F_cosh.cc b/src/float/transcendental/cl_F_cosh.cc
index b6af726..2d79b89 100644
--- a/src/float/transcendental/cl_F_cosh.cc
+++ b/src/float/transcendental/cl_F_cosh.cc
@@ -44,7 +44,7 @@ const cl_F cosh (const cl_F& x)
 			if (TheLfloat(x)->len >= infty) {
 				var cl_LF xx = extend(x,TheLfloat(x)->len+1);
 				var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
-				return cln/float.hyp.cosh,x);
+				return cl_float(hyp.cosh,x);
 			} else
 			#endif
 			if (TheLfloat(x)->len >= 600) {
diff --git a/src/float/transcendental/cl_F_coshsinh.cc b/src/float/transcendental/cl_F_coshsinh.cc
index f0df7b7..a23b756 100644
--- a/src/float/transcendental/cl_F_coshsinh.cc
+++ b/src/float/transcendental/cl_F_coshsinh.cc
@@ -47,8 +47,8 @@ const cosh_sinh_t cosh_sinh (const cl_F& x)
 				var cl_LF xx = extend(x,TheLfloat(x)->len+1);
 				var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
 				return cosh_sinh_t(
-					cln/float.hyp.cosh,x),
-					cln/float.hyp.sinh,x)
+					cl_float(hyp.cosh,x),
+					cl_float(hyp.sinh,x)
 				       );
 			} else
 			#endif
diff --git a/src/float/transcendental/cl_F_sinh.cc b/src/float/transcendental/cl_F_sinh.cc
index 21c9d4c..a490271 100644
--- a/src/float/transcendental/cl_F_sinh.cc
+++ b/src/float/transcendental/cl_F_sinh.cc
@@ -33,7 +33,7 @@ const cl_F sinh (const cl_F& x)
 			if (TheLfloat(x)->len >= infty) {
 				var cl_LF xx = extend(x,TheLfloat(x)->len+1);
 				var cl_LF_cosh_sinh_t hyp = cl_coshsinh_ratseries(xx);
-				return cln/float.hyp.sinh,x);
+				return cl_float(hyp.sinh,x);
 			} else
 			#endif
 			if ((TheLfloat(x)->len >= 500)