From xemacs-m  Tue Feb 11 23:24:22 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 XAA27447
	for <xemacs-beta@xemacs.org>; Tue, 11 Feb 1997 23:24:20 -0600 (CST)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.5/8.8.5) id VAA22531;
	Tue, 11 Feb 1997 21:35:55 -0800
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: Reproducing crashes and other bugs.
References: <199702120502.VAA02702@xemacs.eng.sun.com>
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: Martin Buchholz's message of Tue, 11 Feb 1997 21:02:39 -0800
Mime-Version: 1.0 (generated by tm-edit 7.103)
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Date: 11 Feb 1997 21:35:53 -0800
Message-ID: <m2raimoabq.fsf@altair.xemacs.org>
Lines: 42
X-Mailer: Gnus v5.4.12/XEmacs 20.1

> We've been much better lately at finding reproducible crashes.  An
> excellent way of doing bug tracking is to have reproducibility.

> So I've created reproduce-bugs.el, which should find its way into an
> XEmacs distribution soon.

Cool.

The file you attached is out of date.  :-)

The following bugs have been fixed.  And you should probably add the
Canna input bug, though with my patch it doesn't appear to crash any
more.

;;; Crashes with stack overflow
;;; Should give error via barf-if-buffer-read-only
;;; Fatal error: assertion failed, file src/eval.c, line 1874, abort()
(global-set-bugs-key ?2
  (switch-to-buffer bug-buffer)
  ;; The following line should contain a number of eight-bit characters
  (insert "ΰưϤǤ褦ˤʤޤ٤ϡ̤ǡξ")
  (setq buffer-read-only t)
  (ignore-errors
    (encode-coding-region (point-min) (point-max) 'euc-japan))
  (garbage-collect))


;;; Infinite recursion crash - Segmentation Fault
;;; Apparently fixed.
(global-set-bugs-key ?4
  (switch-to-buffer bug-buffer)
  (insert "abcdefg")
  (setq e (make-extent 1 4))
  (set-extent-property e 'face 'bold)
  (set-extent-property e 'duplicable t)
  (set-extent-property e 'replicating t)
  (insert (buffer-string))
  (delete-region 8 9))

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

