From xemacs-m  Wed Sep 17 16:06:02 1997
Received: from ns1.eds.com (ns1.eds.com [192.85.154.78])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id QAA16252
	for <xemacs-beta@xemacs.org>; Wed, 17 Sep 1997 16:06:00 -0500 (CDT)
Received: from nnsa.eds.com (nnsa.eds.com [130.174.31.78])
	by ns1.eds.com (8.8.6/8.8.5) with ESMTP id RAA19646
	for <xemacs-beta@xemacs.org>; Wed, 17 Sep 1997 17:05:51 -0400 (EDT)
Received: from kocrsv04.delcoelect.com (kocrsv04.delcoelect.com [144.250.100.205])
	by nnsa.eds.com (8.8.5/8.8.5) with ESMTP id RAA12660
	for <xemacs-beta@xemacs.org>; Wed, 17 Sep 1997 17:05:20 -0400 (EDT)
Received: from kocrsw12.delcoelect.com (kocrsw12.delcoelect.com [144.250.106.18]) by kocrsv04.delcoelect.com (8.7.5/8.7.3) with SMTP id QAA09283 for <xemacs-beta@xemacs.org>; Wed, 17 Sep 1997 16:05:20 -0500 (EST)
Received: from kocrsw12 by kocrsw12.delcoelect.com (SMI-8.6/SMI-SVR4)
	id QAA11752; Wed, 17 Sep 1997 16:05:18 -0500
X-Mailer: exmh version 2.0gamma 1/27/97
To: xemacs-beta@xemacs.org
Subject: [PATCH] Disable OffiX debugging
X-Attribution: mts
X-Face: 4tk3bJx]I+QTZ|=]*1+Z){9+;5u_hK*NBeZK6[+B+iB%bVuOJ%^uK~fIG}O-}%WLX*D^aW>
 Gv8E3Xtz0\N&fQl^:pj<K{xM`:d>pPt:9lF-YXB%O)?@rd?*/jE!s94`?]:jJ#C5RDP:;Mr.3lwo`0
 {vIT+<{%IRwe]vLd]7>\X|*z{TUX_t;?TPcOLBMIv8_V92!Vk(*DJVU~0M[`5D^PAWLniO1?YYWArM
 U*j9o+>?1MWi.lO?F-?aVt:qQ8OaG?R}B:I!7S_+KuzxZ.f9M@$z#n\bG2$Q2{od
Date: Wed, 17 Sep 1997 16:05:17 -0500
Message-ID: <11750.874530317@kocrsw12>
From: Mike Scheidler <c23mts@eng.delcoelect.com>

There's some annoying OffiX debugging code still enabled in frame-x.c.
Here's a patch to turn it off.

Mike

-------------------------- cut here --------------------------
--- src/frame-x.c~	Tue Sep  2 22:39:36 1997
+++ src/frame-x.c	Wed Sep 17 15:00:21 1997
@@ -1185,7 +1185,9 @@
 
   if (!DndIsDropMessage(event)) /* the better way */
     {
+#if 0
       stderr_out("DndDropHandler: pseudo drop received (ignore me!)\n");
+#endif
       return;
     }
 
@@ -1195,9 +1197,9 @@
   GCPRO4 (path, frame, dnd_data, dnd_type);
 
   frame = make_frame ((struct frame *) data);
-
+#if 0
   stderr_out("DndDropHandler: valid drop received (T%d S%u)\n",Type,Size);
-
+#endif
   switch (Type)
     {
     case DndFiles:

-------------------------- cut here --------------------------


