From xemacs-m  Mon Feb 24 14:53:26 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id OAA18324
	for <xemacs-beta@xemacs.org>; Mon, 24 Feb 1997 14:53:24 -0600 (CST)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.5/8.8.5) id NAA07844;
	Mon, 24 Feb 1997 13:05:02 -0800
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: [19.15-b95] Success under Solaris-2.5/X11R6.3
References: <vklo8e5aq3.fsf@cdc.noaa.gov>
X-Url: http://www.miranova.com/%7Esteve/
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
In-Reply-To: Mark Borges's message of 24 Feb 1997 11:18:28 -0700
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII
Date: 24 Feb 1997 13:04:59 -0800
Message-ID: <m2ybcdncec.fsf@altair.xemacs.org>
Lines: 42
X-Mailer: Gnus v5.4.15/XEmacs 20.1

Mark Borges writes:

> Purespace usage: 776672 of 886000 (88% -- 106k wasted).
> (due to c-* doc-string lossage I guess)

That's a bit much.  The value I'm aiming for is 35k +/- 5k.

> Two new warnings have appeared in this beta:
> ------------------------------------------------------------------------
> "print.c", line 658: warning: argument #1 is incompatible with prototype:
> 	prototype: pointer to uchar : "./emacsfns.h", line 1495
> 	argument : pointer to char
> "print.c", line 662: warning: argument #1 is incompatible with prototype:
> 	prototype: pointer to uchar : "./emacsfns.h", line 1495
> 	argument : pointer to char
> ------------------------------------------------------------------------

Index: print.c
===================================================================
RCS file: /usr/local/xemacs/xemacs-19.15/src/print.c,v
retrieving revision 1.4
diff -u -r1.4 print.c
--- print.c	1997/02/22 22:08:42	1.4
+++ print.c	1997/02/24 21:01:28
@@ -655,11 +655,11 @@
   if (STRINGP (errmsg))
     Fprinc (errmsg, stream);
   else
-    write_string_1 ("Peculiar error", 14, stream);
+    write_string_1 ((CONST Bufbyte *)"Peculiar error", 14, stream);
 
   for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
     {
-      write_string_1 (i ? ", " : ": ", 2, stream);
+      write_string_1 ((CONST Bufbyte *)(i ? ", " : ": "), 2, stream);
       if (!NILP (file_error))
 	Fprinc (Fcar (tail), stream);
       else

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.

