From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Tom de Vries Newsgroups: gmane.lisp.guile.bugs Subject: bug#33044: Reproduced using guile binary Date: Mon, 15 Oct 2018 16:20:14 +0200 Message-ID: References: <469f2345-5e76-1fc5-1105-f1d508611140@suse.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1539613396 24708 195.159.176.226 (15 Oct 2018 14:23:16 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2018 14:23:16 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 To: 33044@debbugs.gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Mon Oct 15 16:23:12 2018 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gC3m3-0006Ja-6L for guile-bugs@m.gmane.org; Mon, 15 Oct 2018 16:23:11 +0200 Original-Received: from localhost ([::1]:52607 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gC3o9-0007EW-Mj for guile-bugs@m.gmane.org; Mon, 15 Oct 2018 10:25:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50847) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gC3kA-0004Zi-KB for bug-guile@gnu.org; Mon, 15 Oct 2018 10:21:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gC3k2-0002Lh-2N for bug-guile@gnu.org; Mon, 15 Oct 2018 10:21:10 -0400 Original-Received: from debbugs.gnu.org ([208.118.235.43]:46610) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gC3jy-0002KI-J5 for bug-guile@gnu.org; Mon, 15 Oct 2018 10:21:04 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gC3jy-0000ua-9B for bug-guile@gnu.org; Mon, 15 Oct 2018 10:21:02 -0400 X-Loop: help-debbugs@gnu.org In-Reply-To: <469f2345-5e76-1fc5-1105-f1d508611140@suse.de> Resent-From: Tom de Vries Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Mon, 15 Oct 2018 14:21:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 33044 X-GNU-PR-Package: guile X-GNU-PR-Keywords: Original-Received: via spool by 33044-submit@debbugs.gnu.org id=B33044.15396132153431 (code B ref 33044); Mon, 15 Oct 2018 14:21:02 +0000 Original-Received: (at 33044) by debbugs.gnu.org; 15 Oct 2018 14:20:15 +0000 Original-Received: from localhost ([127.0.0.1]:50868 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gC3jC-0000tH-T3 for submit@debbugs.gnu.org; Mon, 15 Oct 2018 10:20:15 -0400 Original-Received: from mx2.suse.de ([195.135.220.15]:56870 helo=mx1.suse.de) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gC3jA-0000t3-TF for 33044@debbugs.gnu.org; Mon, 15 Oct 2018 10:20:13 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Original-Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 1C1ACAF85 for <33044@debbugs.gnu.org>; Mon, 15 Oct 2018 14:20:07 +0000 (UTC) Content-Language: en-US X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.118.235.43 X-BeenThere: bug-guile@gnu.org List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Original-Sender: "bug-guile" Xref: news.gmane.org gmane.lisp.guile.bugs:9195 Archived-At: Hi, Using a simple scheme hello world: ... $ cat hello.scm (display "hello world") (newline) ... we're able to reproduce the problem using the guile binary: .... $ LC_CTYPE=ja_JP.sjis /home/vries/guile/2.2/install/bin/guile -s hello.scm Segmentation fault (core dumped) ... [ Note: When using 2.0, we need to set GUILE_INSTALL_LOCALE=1 in the environment, otherwise the 'LC_CTYPE=ja_JP.sjis' setting has no effect. ] Thanks, - Tom