From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Namespaces - summary, conclusion Date: Mon, 04 May 2020 18:00:15 +0300 Message-ID: <83zhann3sw.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="28508"; mail-complaints-to="usenet@ciao.gmane.io" Cc: stefan@marxist.se, emacs-devel@gnu.org To: Philippe Vaucher Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon May 04 17:01:47 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jVcbL-0007Kj-1x for ged-emacs-devel@m.gmane-mx.org; Mon, 04 May 2020 17:01:47 +0200 Original-Received: from localhost ([::1]:42208 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jVcbK-0004Dv-0y for ged-emacs-devel@m.gmane-mx.org; Mon, 04 May 2020 11:01:46 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53808) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jVca2-0002Zh-GT for emacs-devel@gnu.org; Mon, 04 May 2020 11:00:26 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:59638) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jVca2-0005u7-2m; Mon, 04 May 2020 11:00:26 -0400 Original-Received: from [176.228.60.248] (port=2915 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jVcZx-0003U9-6U; Mon, 04 May 2020 11:00:22 -0400 In-Reply-To: (message from Philippe Vaucher on Mon, 4 May 2020 14:42:58 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:248834 Archived-At: > From: Philippe Vaucher > Date: Mon, 4 May 2020 14:42:58 +0200 > Cc: Emacs developers > > rename-file -> file-rename > delete-file -> file-delete > copy-file -> file-copy > expand-file-name -> file-expand-name These are different: in Emacs we have functions that work on _files_, and we have functions that work on _file names_. The first 3 above are of the former kind, the last one is of the second kind (there are a lot more of that kind). We shouldn't mix them.