From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Taylan Ulrich Bayirli/Kammer Newsgroups: gmane.lisp.guile.user Subject: Re: Weird module behaviour Date: Thu, 25 Sep 2014 16:25:48 +0200 Message-ID: <878ul7n5eb.fsf@taylan.uni.cx> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1411655187 17844 80.91.229.3 (25 Sep 2014 14:26:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Sep 2014 14:26:27 +0000 (UTC) Cc: "guile-user@gnu.org" To: Panicz Maciej Godek Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Thu Sep 25 16:26:16 2014 Return-path: Envelope-to: guile-user@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 1XX9zl-00061v-0V for guile-user@m.gmane.org; Thu, 25 Sep 2014 16:26:09 +0200 Original-Received: from localhost ([::1]:40511 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XX9zk-0006yt-J4 for guile-user@m.gmane.org; Thu, 25 Sep 2014 10:26:08 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XX9zb-0006yl-5r for guile-user@gnu.org; Thu, 25 Sep 2014 10:26:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XX9zZ-0003MS-VP for guile-user@gnu.org; Thu, 25 Sep 2014 10:25:59 -0400 Original-Received: from mail-lb0-x231.google.com ([2a00:1450:4010:c04::231]:59340) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XX9zZ-0003Li-Mz for guile-user@gnu.org; Thu, 25 Sep 2014 10:25:57 -0400 Original-Received: by mail-lb0-f177.google.com with SMTP id z12so12727359lbi.36 for ; Thu, 25 Sep 2014 07:25:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=fPpr2LCRRQQ6dLCni7cw98z6hjfZ71Dz5GlV6Mi86Xk=; b=X8T4Y56O8b+iA3VS+WRMwbv1vRE1RJRGIaEwqkZa+T9VvQYzioaSIO+XZ90ogkyy7o iSs/RN9Pp5WpVjbdL2QPDDDScKmaiM+3wsTiSVgi+t+8gpbZ5BD88F6+Q41W5KqmsYk4 kGawh1vfYaGuxO/KblKopTMIQv3dR7eiqa1YpfpuzwxivvWLulAMiR708yAlZ8fMSFxK 1gkF7Y8KPONr3gGnj/kysr+aGgoCYlUdaBYSxn16pWu1oLBu7StmGmQdFZzQu/D7CBQX cD5EFwwhLSCYrrPcJoMbgJ9k8HRjJvTNLUdkZGHqG/6K+CRU/suTDgIIbDhu9gUXOOzr ID3Q== X-Received: by 10.152.20.1 with SMTP id j1mr13575291lae.57.1411655150629; Thu, 25 Sep 2014 07:25:50 -0700 (PDT) Original-Received: from taylan.uni.cx (p200300514A6182120213E8FFFEED36FB.dip0.t-ipconnect.de. [2003:51:4a61:8212:213:e8ff:feed:36fb]) by mx.google.com with ESMTPSA id or5sm869216lbb.42.2014.09.25.07.25.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 25 Sep 2014 07:25:49 -0700 (PDT) In-Reply-To: (Panicz Maciej Godek's message of "Thu, 25 Sep 2014 16:04:06 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::231 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:11551 Archived-At: Panicz Maciej Godek writes: > Furthermore, when I try to use the #:renamer feature, like > > (use-modules ((redis) #:renamer (symbol-prefix-proc 'redis:))) > > [...] Just a tip: you can do e.g. (use-modules ((foo) #:prefix foo-)). It seems many people don't know of it. Taylan