From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lars Hansen Newsgroups: gmane.emacs.devel Subject: docstring of file-regular-p Date: Tue, 08 Nov 2005 20:32:04 +0100 Message-ID: <4370FD34.4000303@soem.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030806060403080901020702" X-Trace: sea.gmane.org 1131478606 24694 80.91.229.2 (8 Nov 2005 19:36:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 8 Nov 2005 19:36:46 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 08 20:36:44 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EZZEN-00059e-AT for ged-emacs-devel@m.gmane.org; Tue, 08 Nov 2005 20:34:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EZZEL-0007hN-8J for ged-emacs-devel@m.gmane.org; Tue, 08 Nov 2005 14:34:05 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EZZD0-0007QU-GT for emacs-devel@gnu.org; Tue, 08 Nov 2005 14:32:44 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EZZCs-0007O1-TD for emacs-devel@gnu.org; Tue, 08 Nov 2005 14:32:40 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EZZCs-0007Nl-Ck for emacs-devel@gnu.org; Tue, 08 Nov 2005 14:32:34 -0500 Original-Received: from [212.99.225.245] (helo=odin.broadcom.dk) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1EZZCh-0000Aa-9H for emacs-devel@gnu.org; Tue, 08 Nov 2005 14:32:23 -0500 Original-Received: from pppoe3-ves.broadcom.dk ([212.99.255.42] helo=[10.17.1.239]) by odin.broadcom.dk with esmtp (Exim 4.24; FreeBSD) id 1EZZ5X-000C7d-Qf for emacs-devel@gnu.org; Tue, 08 Nov 2005 20:24:59 +0100 User-Agent: Debian Thunderbird 1.0.2 (X11/20051002) X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org 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:45599 Archived-At: This is a multi-part message in MIME format. --------------030806060403080901020702 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I suggest to update the docstring of file-regular-p to look like the one of file-directory-p. If there are no objections, I will commit in a few days. --------------030806060403080901020702 Content-Type: text/x-patch; name="fileio.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fileio.diff" *** /home/lh/cvsroot/emacs/src/fileio.c 2005-10-23 18:19:59.000000000 +0200 --- fileio.c 2005-11-08 20:15:38.392973431 +0100 *************** *** 3392,3399 **** } DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, ! doc: /* Return t if file FILENAME is the name of a regular file. ! This is the sort of file that holds an ordinary stream of data bytes. */) (filename) Lisp_Object filename; { --- 3392,3401 ---- } DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, ! doc: /* Return t if FILENAME names a regular file. ! This is the sort of file that holds an ordinary stream of data bytes. ! Symbolic links to regular files count as regular files. ! See `file-symlink-p' to distinguish symlinks. */) (filename) Lisp_Object filename; { --------------030806060403080901020702 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --------------030806060403080901020702--