From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Don't concat directories to file names Date: Fri, 15 Jun 2007 09:55:20 +0200 Message-ID: References: <87wsy6cvip.fsf@uwakimon.sk.tsukuba.ac.jp> <87sl8uc7ek.fsf@uwakimon.sk.tsukuba.ac.jp> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1181894128 3195 80.91.229.12 (15 Jun 2007 07:55:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 15 Jun 2007 07:55:28 +0000 (UTC) Cc: Mike Sperber , rms@gnu.org, emacs-devel@gnu.org To: "Stephen J. Turnbull" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 15 09:55:26 2007 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 1Hz6eU-0008E0-D3 for ged-emacs-devel@m.gmane.org; Fri, 15 Jun 2007 09:55:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hz6eT-00050P-RI for ged-emacs-devel@m.gmane.org; Fri, 15 Jun 2007 03:55:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hz6eQ-0004ya-QU for emacs-devel@gnu.org; Fri, 15 Jun 2007 03:55:22 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hz6eQ-0004xF-4J for emacs-devel@gnu.org; Fri, 15 Jun 2007 03:55:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hz6eQ-0004x2-22 for emacs-devel@gnu.org; Fri, 15 Jun 2007 03:55:22 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.224]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hz6eP-0004aw-LW for emacs-devel@gnu.org; Fri, 15 Jun 2007 03:55:21 -0400 Original-Received: by wx-out-0506.google.com with SMTP id h26so943432wxd for ; Fri, 15 Jun 2007 00:55:20 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gWf9sVIvSRTE6CIj2uvrRTsWBkVc7tMZ01InhJN4zK1eYptiYNJmNajiyEXP6aIYdltOBYqcGWTCQQucm5K34uHKKGQLSz4UWirU/9+3qm7D9zRi2V9BbG/VQfLDI0sQmfp9NybZCXlADbr2+Otp4/Vsbu7YE1s8TK/gRMouW3U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A3GHjtI55aMrmwkZ3BgFcM/bcES3jg+H9wrc2K8JO9NXhT+Mvy0y8c9TkxtKjAqJQBdWCLJ7OnIiMn+iCA4TpS/XzgRw54gL5Pt3rQq4I8kNfZsCRnd3drW33CMsCNvK6QaiOHrsYnvvNM/lAMQ1/fW6fRV1Ykjw8oA+JwVT3Ck= Original-Received: by 10.90.75.10 with SMTP id x10mr2292372aga.1181894120915; Fri, 15 Jun 2007 00:55:20 -0700 (PDT) Original-Received: by 10.90.87.8 with HTTP; Fri, 15 Jun 2007 00:55:20 -0700 (PDT) In-Reply-To: <87sl8uc7ek.fsf@uwakimon.sk.tsukuba.ac.jp> Content-Disposition: inline X-detected-kernel: Linux 2.4-2.6 (Google crawlbot) 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:72926 Archived-At: On 6/15/07, Stephen J. Turnbull wrote: > think your design which has the user name as an argument makes sense; Well, the NAME in my function was not the user name, but the file name; but the next stage on my plan was using the user name; that's why I've been asking about ~USER/.emacs.d/ :) > If you want to look at docs, you'll probably want to install XEmacs. > It's consider internal to startup.el, and not documented in the Lisp > Reference according C-h C-f. C-h a user.*file RET will give a list of > related functions; in XEmacs the preferred style is to provide > docstrings even for internal functions, so that's probably the best > we've got. OK, I'll take a look. Juanma