From xemacs-m  Sat Mar  8 23:00:31 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 XAA07360
	for <xemacs-beta@xemacs.org>; Sat, 8 Mar 1997 23:00:29 -0600 (CST)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.5/8.8.5) id VAA12571;
	Sat, 8 Mar 1997 21:12:39 -0800
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: FAILURE on alpha-dec-osf4.0
References: <kigsp25u2bn.fsf@jagor.srce.hr>
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: Hrvoje Niksic's message of 09 Mar 1997 05:17:00 +0100
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII
Date: 08 Mar 1997 21:12:37 -0800
Message-ID: <m2vi71hcmy.fsf@altair.xemacs.org>
Lines: 84
X-Mailer: Gnus v5.4.24/XEmacs 20.1

Hrvoje Niksic writes:

> I'm afraid this is the result of gnuattach patches, as I got the
> same result when I tried to apply them myself.  I don't know where
> the problem is.  64-bit architecture, maybe?

Yup.

> I removed the `XINT', and it compiled.  Did I muck it up?

Yup.  You need the XINT to remove the tag bits.  There are other
problems with that piece of code.

Try this patch:

Index: src/console.c
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/src/console.c,v
retrieving revision 1.2
diff -u -r1.2 console.c
--- console.c	1997/03/08 23:27:42	1.2
+++ console.c	1997/03/09 05:05:58
@@ -903,6 +903,9 @@
 # endif
 #endif /* BSD */
 }
+#ifdef HAVE_TTY
+extern Lisp_Object Fconsole_tty_controlling_process(Lisp_Object console);
+#endif
 
 DEFUN ("suspend-console", Fsuspend_console, 0, 1, "", /*
 Suspend a console.  For tty consoles, it sends a signal to suspend
@@ -922,6 +925,7 @@
   struct console *c;
   struct gcpro gcpro1;
 
+#ifdef HAVE_TTY
   if (NILP (console))
       console=Fselected_console();
 
@@ -944,6 +948,7 @@
   }
 
   UNGCPRO;
+#endif
   return Qnil;
 }
 
@@ -958,6 +963,7 @@
   struct console *c;
   struct gcpro gcpro1, gcpro2, gcpro3;
 
+#ifdef HAVE_TTY
   GCPRO2 (console, devcons);
 
   c = decode_console(console);
@@ -976,6 +982,7 @@
   }
 
   UNGCPRO;
+#endif
   return Qnil;
 }
 


> NOTE: The LIB_TOOLTALK lossage repeated.

> Puresize stuff works.

Cool.

> NOTE:

> The new logo is great.  However, something is eating up my colors on
> an 8-bit display.  Yes, I did quit netscape, but the problem
> persists.  The toolbar icons are horrible. :-(

Not good.  Did it persist after garbage collection?  I have a strange
feeling about the way images are being displayed now.  I noticed odd
irreproducible behavior browsing about.el in testing.
-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.

