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
|
$NetBSD: patch-ag,v 1.1 2003/11/05 22:31:43 dmcmahill Exp $
--- src/draw.c.orig 2003-08-02 19:51:13.000000000 -0400
+++ src/draw.c
@@ -503,8 +503,8 @@ double spice2val(char *s)
}
XSCM_DEFINE(spice_number, "spice->number", 1, 0, 0, (SCM str),
-"Given a string SSTR containing a representation of a number,
-possibly containing spice-style multiplier suffixes, return a real number.")
+"Given a string SSTR containing a representation of a number,"
+"possibly containing spice-style multiplier suffixes, return a real number.")
#define FUNC_NAME s_spice_number
{
double dval;
@@ -518,8 +518,8 @@ possibly containing spice-style multipli
#undef FUNC_NAME
XSCM_DEFINE(number_spice, "number->spice", 1, 0, 0, (SCM val),
- "Given a real number VAL, return a string representation
-in spice suffix syntax.")
+ "Given a real number VAL, return a string representation "
+"in spice suffix syntax.")
#define FUNC_NAME s_number_spice
{
double dval;
|