]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fileio.c (Ffile_acl): Undocument return format.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 Jan 2013 02:42:08 +0000 (21:42 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 Jan 2013 02:42:08 +0000 (21:42 -0500)
* doc/lispref/files.texi (File Attributes): Idem.

doc/lispref/ChangeLog
doc/lispref/files.texi
src/ChangeLog
src/fileio.c

index 4815ac2a4826baee96f67295a056e21582383f3f..f9f3aad9ab2a60ea31548b70561a39bbb74f59d4 100644 (file)
@@ -1,3 +1,7 @@
+2013-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * files.texi (File Attributes): Undocument return format of file-acl.
+
 2013-01-03  Glenn Morris  <rgm@gnu.org>
 
        * processes.texi (System Processes):
index c323a6e72ad5a2e210803aeec91213bd1df085ab..114eb1f38ea98557cec9512cba1bf69129d2f556 100644 (file)
@@ -1363,7 +1363,7 @@ security APIs.
 
 @defun file-acl filename
 This function returns the ACL entries of the file @var{filename}.  The
-return value is a platform-dependent string containing the textual
+return value is a platform-dependent object containing some
 representation of the ACL entries.  Don't use it for anything except
 passing it to the @code{set-file-acl} function (@pxref{Changing Files,
 set-file-acl}).
index 7342f7c6add4d92b536b69132627022610ed77fc..fa27e299ad7a76f708cf4f5f587191941242fe5c 100644 (file)
@@ -1,3 +1,7 @@
+2013-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * fileio.c (Ffile_acl): Undocument return format.
+
 2013-01-02  Glenn Morris  <rgm@gnu.org>
 
        * keymap.c (Fkey_description): Doc fix.  (Bug#13323)
index 05f615f0c88fb79ee4d95a999ca1bd1679b666c1..5e9b36ee44a01399ec30621e7aa7fe8d94df2437 100644 (file)
@@ -3084,11 +3084,11 @@ or if Emacs was not compiled with SELinux support.  */)
 }
 \f
 DEFUN ("file-acl", Ffile_acl, Sfile_acl, 1, 1, 0,
-       doc: /* Return ACL entries of file named FILENAME, as a string.
+       doc: /* Return ACL entries of file named FILENAME.
+The entries are returned in a format suitable for use in `set-file-acl'
+but is otherwise undocumented and subject to change.
 Return nil if file does not exist or is not accessible, or if Emacs
-was unable to determine the ACL entries.  The latter can happen for
-local files if Emacs was not compiled with ACL support, or for remote
-files if the file handler returns nil for the file's ACL entries.  */)
+was unable to determine the ACL entries.  */)
   (Lisp_Object filename)
 {
   Lisp_Object absname;