From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nala Ginrut Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Add ',run' and ',!' Date: Fri, 12 Apr 2013 14:29:42 +0800 Organization: HFG Message-ID: <1365748182.13058.20.camel@Renee-desktop.suse> References: <87fvyx4sqn.fsf@karetnikov.org> <87a9p5eigt.fsf@Kagami.home> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1365748190 29979 80.91.229.3 (12 Apr 2013 06:29:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 12 Apr 2013 06:29:50 +0000 (UTC) Cc: Ian Price , guile-devel@gnu.org To: Daniel Hartwig Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Apr 12 08:29:54 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UQXUf-000479-3R for guile-devel@m.gmane.org; Fri, 12 Apr 2013 08:29:53 +0200 Original-Received: from localhost ([::1]:49233 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQXUe-0001Ht-Nu for guile-devel@m.gmane.org; Fri, 12 Apr 2013 02:29:52 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:59371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQXUb-0001Hi-QH for guile-devel@gnu.org; Fri, 12 Apr 2013 02:29:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQXUY-0002Og-Kf for guile-devel@gnu.org; Fri, 12 Apr 2013 02:29:49 -0400 Original-Received: from mail-pa0-f50.google.com ([209.85.220.50]:39058) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQXUY-0002OC-Ez for guile-devel@gnu.org; Fri, 12 Apr 2013 02:29:46 -0400 Original-Received: by mail-pa0-f50.google.com with SMTP id bg2so1305182pad.37 for ; Thu, 11 Apr 2013 23:29:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:subject:from:to:cc:date:in-reply-to :references:organization:content-type:x-mailer:mime-version :content-transfer-encoding; bh=7s0/mGIgGayT5UOewfGByCRU1tkJmZXbJa+CHgpPhWE=; b=ldXzWXmOdBrvWN/gR8OURBWfm1rZsAqh18+CxwDXWbjitvntkwAgNclBZEM47reZWK HcX946epxOlFPy30bq/n/nitwEZXjt9Qg4cLiZqXMYROp9+oTqHwAdVGoF2orDS/4ba2 sO+xNRzTkDVC0pgeG7f1sU0lN81mnP2P6p6dSww0UdGBsMwYncfxHsplItULoX0NtSOb 3hVZxxjoVXee2Gee0sp+C2JBk4goSJYNNM6YQcLMOVeVwB1KrXmpp9VWyIG2hS8LSbAK wbA0Qddp5NZUTvWu0Psfy4pPEAJr3icyNa4SUOMt/GGbMdDvPT9IoUuEhx1HKhNPEvlj dCUw== X-Received: by 10.68.100.164 with SMTP id ez4mr6212990pbb.109.1365748185451; Thu, 11 Apr 2013 23:29:45 -0700 (PDT) Original-Received: from [147.2.147.112] ([61.14.130.226]) by mx.google.com with ESMTPS id qh4sm8186366pac.8.2013.04.11.23.29.43 (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 11 Apr 2013 23:29:44 -0700 (PDT) In-Reply-To: X-Mailer: Evolution 3.4.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.220.50 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:16222 Archived-At: On Fri, 2013-04-12 at 07:55 +0800, Daniel Hartwig wrote: > On 11 April 2013 13:37, Ian Price wrote: > > > >> So, what do you think? > > > > This is the sort of thing that belongs in a .guile rather than in > > guile IMO. > > > > Right, and since you can already do this with more control via the > posix interface, adding this 'shortcut' to the repl adds little in the > way of value. > I think it's worthy making our REPL-command module more extensible, and we may add customized REPL command. Just like our new REPL-printer patch, so we may load coloriezed-REPL without any patch.