From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Israelsson Tampe Newsgroups: gmane.lisp.guile.devel Subject: piper schemigan Date: Wed, 24 Nov 2010 19:00:50 +0100 Message-ID: <201011241900.50947.stefan.itampe@gmail.com> References: <201010212223.23822.stefan.itampe@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1290623142 12727 80.91.229.12 (24 Nov 2010 18:25:42 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 24 Nov 2010 18:25:42 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Nov 24 19:25:36 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PLK2B-0003Y3-81 for guile-devel@m.gmane.org; Wed, 24 Nov 2010 19:25:35 +0100 Original-Received: from localhost ([127.0.0.1]:58570 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PLK2A-0000X3-Be for guile-devel@m.gmane.org; Wed, 24 Nov 2010 13:25:34 -0500 Original-Received: from [140.186.70.92] (port=39926 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PLJdk-0002bh-Qu for guile-devel@gnu.org; Wed, 24 Nov 2010 13:00:27 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PLJdZ-0000cE-HF for guile-devel@gnu.org; Wed, 24 Nov 2010 13:00:19 -0500 Original-Received: from mail-ew0-f41.google.com ([209.85.215.41]:50122) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PLJdZ-0000bz-CR for guile-devel@gnu.org; Wed, 24 Nov 2010 13:00:09 -0500 Original-Received: by ewy27 with SMTP id 27so49877ewy.0 for ; Wed, 24 Nov 2010 10:00:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=7d1ObwpL6qiuxH6ceHA86GFRzvaxLtmjVK6CgjCmOtU=; b=BqXT+v1VtS8CA5Jo6jMtpg8XhF2Zz2ljawYHvJ7GrlFxy5Adx7d8KN5GMbwNVjFHz1 X4ZBP2Q5YXmrYw/iqckO7031SOsQKGQzb/9DUxiFM57QtiYXgMdnIHLiXrMTLTFHm/iM 5ewlQlzslm5fbtvE59uH/+Vqr991qzHfK/d30= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:content-transfer-encoding:message-id; b=icuL80Mvbzbb0mGLmiOHrbDZ8/k1Ko5IhnpKkCTSs8SEF/RZeSpQ8vM/HeIIVQKJ6o OgIhE3rDMI2N8Ii/fO5qnV5mMImWQWb1wuBdpMFRdKFTzeVa7kCH6EF4FAlNY/b+enCV rBWbdfdlIZAAUKIxx93YXiBrELijmWAzKMmc0= Original-Received: by 10.213.8.146 with SMTP id h18mr3887323ebh.87.1290621608051; Wed, 24 Nov 2010 10:00:08 -0800 (PST) Original-Received: from linux-s4gz.localnet (1-1-1-39a.veo.vs.bostream.se [82.182.254.46]) by mx.google.com with ESMTPS id b52sm7185414eei.7.2010.11.24.10.00.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 24 Nov 2010 10:00:06 -0800 (PST) User-Agent: KMail/1.13.5 (Linux/2.6.34.7-0.5-desktop; KDE/4.4.4; x86_64; ; ) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11195 Archived-At: Hi, I'm very used to take the standart output and pipe it to grep and friends. So I searched for this feature and I think scsh is the correct way to make this happen. But it have been bitrotted. So I've hacked the sorces to. Use guile syntax-define and cut out defmacro and friends Use guile modules whenever possible keeping the interface as intact as possible, e.g use, (ice-9 optargs) (ice-9 regexp) (srfi srfi-9) (srfi srfi-9 gnu) In stead of the scsh bag of software for these cases. There are a few issues that I found 1. the macro run uses unquote out of a visble backquote and guile barfs 2. I was not able to use the | symbol. Any useful comments? Regards Stefan