diff options
| author | Joakim Verona | 2012-12-30 00:03:52 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-30 00:03:52 +0100 |
| commit | ea2da3d8fbf19765a9bd82292bfc73918f74048d (patch) | |
| tree | b350dbdaa6601f4384a3fbde01eeaea297d4f047 /doc/lispref | |
| parent | 16b9f224223b3e9eb0c4b313e4257dacbd3ebe34 (diff) | |
| parent | eff2eb5812e964024c3aa20197b21f12d37155dd (diff) | |
| download | emacs-ea2da3d8fbf19765a9bd82292bfc73918f74048d.tar.gz emacs-ea2da3d8fbf19765a9bd82292bfc73918f74048d.zip | |
auto upstream
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 12 |
2 files changed, 13 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 7893424a942..b2f89024726 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Changing Files): Document the return values of | ||
| 4 | set-file-selinux-context and set-file-acl. | ||
| 5 | |||
| 1 | 2012-12-27 Glenn Morris <rgm@gnu.org> | 6 | 2012-12-27 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * files.texi (File Names): Mention Cygwin conversion functions. | 8 | * files.texi (File Names): Mention Cygwin conversion functions. |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 3faa5f5e257..4317fe42523 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1703,9 +1703,11 @@ This function sets the SELinux security context of the file | |||
| 1703 | @var{filename} to @var{context}. @xref{File Attributes}, for a brief | 1703 | @var{filename} to @var{context}. @xref{File Attributes}, for a brief |
| 1704 | description of SELinux contexts. The @var{context} argument should be | 1704 | description of SELinux contexts. The @var{context} argument should be |
| 1705 | a list @code{(@var{user} @var{role} @var{type} @var{range})}, like the | 1705 | a list @code{(@var{user} @var{role} @var{type} @var{range})}, like the |
| 1706 | return value of @code{file-selinux-context}. The function does | 1706 | return value of @code{file-selinux-context}. The function returns |
| 1707 | nothing if SELinux is disabled, or if Emacs was compiled without | 1707 | @code{t} if it succeeds to set the SELinux security context of |
| 1708 | SELinux support. | 1708 | @var{filename}, @code{nil} otherwise. The function does nothing and |
| 1709 | returns @code{nil} if SELinux is disabled, or if Emacs was compiled | ||
| 1710 | without SELinux support. | ||
| 1709 | @end defun | 1711 | @end defun |
| 1710 | 1712 | ||
| 1711 | @defun set-file-acl filename acl-string | 1713 | @defun set-file-acl filename acl-string |
| @@ -1713,7 +1715,9 @@ This function sets the ACL entries of the file @var{filename} to | |||
| 1713 | @var{acl-string}. @xref{File Attributes}, for a brief description of | 1715 | @var{acl-string}. @xref{File Attributes}, for a brief description of |
| 1714 | ACLs. The @var{acl-string} argument should be a string containing the | 1716 | ACLs. The @var{acl-string} argument should be a string containing the |
| 1715 | textual representation of the desired ACL entries as returned by | 1717 | textual representation of the desired ACL entries as returned by |
| 1716 | @code{file-acl} (@pxref{File Attributes, file-acl}). | 1718 | @code{file-acl} (@pxref{File Attributes, file-acl}). The function |
| 1719 | returns @code{t} if it succeeds to set the ACL entries of | ||
| 1720 | @var{filename}, @code{nil} otherwise. | ||
| 1717 | @end defun | 1721 | @end defun |
| 1718 | 1722 | ||
| 1719 | @node File Names | 1723 | @node File Names |