From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Gilaras Drakeson Newsgroups: gmane.emacs.devel Subject: Re: Initialisation of dired-x for install-info guessing Date: Wed, 06 May 2009 10:11:24 -0400 Message-ID: <86bpq6iann.fsf@gmail.com> References: <87hbzzs7ax.fsf@gmail.com> <8363gfe2r1.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1241619145 27506 80.91.229.12 (6 May 2009 14:12:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 6 May 2009 14:12:25 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 06 16:12:17 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1M1hr5-0006Yz-Ck for ged-emacs-devel@m.gmane.org; Wed, 06 May 2009 16:12:15 +0200 Original-Received: from localhost ([127.0.0.1]:34907 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M1hr4-0003ax-Nv for ged-emacs-devel@m.gmane.org; Wed, 06 May 2009 10:12:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M1hqd-0003PO-Tt for emacs-devel@gnu.org; Wed, 06 May 2009 10:11:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M1hqY-0003NY-Vo for emacs-devel@gnu.org; Wed, 06 May 2009 10:11:47 -0400 Original-Received: from [199.232.76.173] (port=50667 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M1hqY-0003NT-4N for emacs-devel@gnu.org; Wed, 06 May 2009 10:11:42 -0400 Original-Received: from main.gmane.org ([80.91.229.2]:35601 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M1hqX-0007l0-Eh for emacs-devel@gnu.org; Wed, 06 May 2009 10:11:41 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1M1hqT-0007Ze-Io for emacs-devel@gnu.org; Wed, 06 May 2009 14:11:39 +0000 Original-Received: from bas3-toronto02-1279545524.dsl.bell.ca ([76.68.80.180]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 May 2009 14:11:37 +0000 Original-Received: from gilaras by bas3-toronto02-1279545524.dsl.bell.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 May 2009 14:11:37 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 19 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: bas3-toronto02-1279545524.dsl.bell.ca User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.93 (gnu/linux) Cancel-Lock: sha1:hSPu8+WDzGTbqYjFa8+w5TG96oM= X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:110722 Archived-At: >> --8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<--- >> ;; info files >> (list "\.info$" >> (cond >> ((eq system-type 'windows-nt) >> "for %i in ( * ) do install-info \"%i\" \"%~pi\\dir\"") >> (t ; bash >> "for i in * ; do p=`dirname \"$i\"`;install-info $i $p/dir\"; done")) >> ) >> --8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<-----8<--- > Also, I'm not sure I understand what is this command trying to do. It > seems to try to install Info files in the subdirectory named literally > `dir' of the directory where those Info files live? "dir" is a plain text file into which install-info adds entries. Gilaras