[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107471: * files.texi (Kinds of Files
From: |
Michael Albinus |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107471: * files.texi (Kinds of Files): The return value of file-equal-p is |
Date: |
Thu, 01 Mar 2012 09:21:32 +0100 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107471
committer: Michael Albinus <address@hidden>
branch nick: trunk
timestamp: Thu 2012-03-01 09:21:32 +0100
message:
* files.texi (Kinds of Files): The return value of file-equal-p is
unspecified, if FILE1 or FILE2 does not exist.
modified:
doc/lispref/ChangeLog
doc/lispref/files.texi
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog 2012-03-01 07:31:15 +0000
+++ b/doc/lispref/ChangeLog 2012-03-01 08:21:32 +0000
@@ -1,3 +1,8 @@
+2012-03-01 Michael Albinus <address@hidden>
+
+ * files.texi (Kinds of Files): The return value of file-equal-p is
+ unspecified, if FILE1 or FILE2 does not exist.
+
2012-03-01 Glenn Morris <address@hidden>
* hooks.texi (Standard Hooks): Remove mode-specific hooks.
@@ -13,7 +18,7 @@
2012-02-28 Thierry Volpiatto <address@hidden>
- * files.texi: Rename files-equal-p to file-equal-p.
+ * files.texi (Kinds of Files): Rename files-equal-p to file-equal-p.
Update changed behavior of file-subdir-of-p.
2012-02-28 Glenn Morris <address@hidden>
=== modified file 'doc/lispref/files.texi'
--- a/doc/lispref/files.texi 2012-02-28 09:28:52 +0000
+++ b/doc/lispref/files.texi 2012-03-01 08:21:32 +0000
@@ -1020,16 +1020,15 @@
@defun file-equal-p file1 file2
This function returns @code{t} if the files @var{file1} and
address@hidden name the same file. Two ordinary files are considered to
-be the same if the function @code{file-attributes} (@pxref{File
-Attributes}) returns @code{equal} values for them.
address@hidden name the same file. If @var{file1} or @var{file2} does
+not exist, the return value is unspecified.
@end defun
@defun file-subdir-of-p dir1 dir2
This function returns @code{t} if directory @var{dir1} is a
subdirectory of @var{dir2}, or if @var{dir1} and @var{dir2} are the
same directory. It compares the @code{file-truename} values of the
-two directories (@pxref{Truenames}). If @var{dir2}
+two directories (@pxref{Truenames}). If @var{dir2}
do not name an existing directory, the return value is @code{nil}.
@end defun
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107471: * files.texi (Kinds of Files): The return value of file-equal-p is,
Michael Albinus <=