From xemacs-m  Mon Jul 14 13:09:01 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id NAA04207
	for <xemacs-beta@xemacs.org>; Mon, 14 Jul 1997 13:08:58 -0500 (CDT)
Received: (from hniksic@localhost)
	by jagor.srce.hr (8.8.6/8.8.6) id UAA28093;
	Mon, 14 Jul 1997 20:08:53 +0200 (MET DST)
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: [PATCH] `report-xemacs-bug' is buggy
X-Attribution: Hrv
X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/<W*SMo/Mv:58:*_y~ki>xDi&N7XG
        KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&<qQ>Ff%x_>1`T(+M2Gg/fgndU%k*ft
        [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 14 Jul 1997 20:08:53 +0200
Message-ID: <kigafjpcxqi.fsf@jagor.srce.hr>
Lines: 42
X-Mailer: Gnus v5.4.63/XEmacs 20.3(beta13) - "Brussels"

(I've already sent this to Steve, but remembered that others may be
interested, too.)

Due to a fuckup of mine, `M-x report-xemacs-bug' doesn't work in b13.
This patch will fix it:

--- src/emacs.c.orig	Mon Jul 14 19:57:41 1997
+++ src/emacs.c	Mon Jul 14 20:05:23 1997
@@ -84,6 +84,10 @@
 /* Variable whose value is string giving configuration built for.  */
 Lisp_Object Vsystem_configuration;
 
+/* Variable whose value is string containing the configuration options
+   XEmacs was built with.  */
+Lisp_Object Vsystem_configuration_options;
+
 /* Version numbers and strings */
 Lisp_Object Vemacs_major_version;
 Lisp_Object Vemacs_minor_version;
@@ -2298,6 +2302,15 @@
 Value is string indicating configuration XEmacs was built for.
 */ );
   Vsystem_configuration = Fpurecopy (build_string (EMACS_CONFIGURATION));
+
+#ifndef EMACS_CONFIG_OPTIONS
+# define EMACS_CONFIG_OPTIONS "UNKNOWN"
+#endif
+  DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options /*
+String containing the configuration options XEmacs was built with.
+*/ );
+  Vsystem_configuration_options = Fpurecopy (build_string
+					     (EMACS_CONFIG_OPTIONS));
 
   DEFVAR_LISP ("emacs-major-version", &Vemacs_major_version /*
 Major version number of this version of Emacs, as an integer.


-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
Then...  his face does a complete change of expression.  It goes from
a "Vengeance is mine" expression, to a "What the fuck" blank look.

