diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 2 | ||||
| -rw-r--r-- | etc/NEWS | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index c598cf0f5aa..6fd0f6a271b 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-12-23 Xue Fuqiao <xfq.free@gmail.com> | 1 | 2013-12-23 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 2 | ||
| 3 | * files.texi (Changing Files): Fix an argument of `copy-file'. | ||
| 4 | |||
| 3 | * strings.texi (Creating Strings): Document TRIM in `split-string'. | 5 | * strings.texi (Creating Strings): Document TRIM in `split-string'. |
| 4 | 6 | ||
| 5 | 2013-12-23 Chong Yidong <cyd@gnu.org> | 7 | 2013-12-23 Chong Yidong <cyd@gnu.org> |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 944a1e37cc4..c1eae5eefa3 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1550,7 +1550,7 @@ with @code{add-name-to-file} and then deleting @var{filename} has the | |||
| 1550 | same effect as renaming, aside from momentary intermediate states. | 1550 | same effect as renaming, aside from momentary intermediate states. |
| 1551 | @end deffn | 1551 | @end deffn |
| 1552 | 1552 | ||
| 1553 | @deffn Command copy-file oldname newname &optional ok-if-exists time preserve-uid-gid preserve-selinux | 1553 | @deffn Command copy-file oldname newname &optional ok-if-exists time preserve-uid-gid preserve-extended-attributes |
| 1554 | This command copies the file @var{oldname} to @var{newname}. An | 1554 | This command copies the file @var{oldname} to @var{newname}. An |
| 1555 | error is signaled if @var{oldname} does not exist. If @var{newname} | 1555 | error is signaled if @var{oldname} does not exist. If @var{newname} |
| 1556 | names a directory, it copies @var{oldname} into that directory, | 1556 | names a directory, it copies @var{oldname} into that directory, |
| @@ -993,6 +993,7 @@ the start and end of each substring. | |||
| 993 | 993 | ||
| 994 | ** File-handling changes | 994 | ** File-handling changes |
| 995 | 995 | ||
| 996 | +++ | ||
| 996 | *** Support for filesystem notifications. | 997 | *** Support for filesystem notifications. |
| 997 | Emacs now supports notifications of filesystem changes, such as | 998 | Emacs now supports notifications of filesystem changes, such as |
| 998 | creation, modification, and deletion of files. This requires the | 999 | creation, modification, and deletion of files. This requires the |
| @@ -1000,11 +1001,13 @@ creation, modification, and deletion of files. This requires the | |||
| 1000 | MS-Windows systems, this is supported for Windows XP and newer | 1001 | MS-Windows systems, this is supported for Windows XP and newer |
| 1001 | versions. | 1002 | versions. |
| 1002 | 1003 | ||
| 1004 | +++ | ||
| 1003 | *** The 9th element returned by `file-attributes' is now unspecified. | 1005 | *** The 9th element returned by `file-attributes' is now unspecified. |
| 1004 | Formerly, it was t if the file's gid would change if file were deleted | 1006 | Formerly, it was t if the file's gid would change if file were deleted |
| 1005 | and recreated. This value has been inaccurate for years on many | 1007 | and recreated. This value has been inaccurate for years on many |
| 1006 | platforms, and nobody seems to have noticed or cared. | 1008 | platforms, and nobody seems to have noticed or cared. |
| 1007 | 1009 | ||
| 1010 | +++ | ||
| 1008 | *** The 6th argument to `copy-file' has been renamed to | 1011 | *** The 6th argument to `copy-file' has been renamed to |
| 1009 | PRESERVE-EXTENDED-ATTRIBUTES as it now handles both SELinux context | 1012 | PRESERVE-EXTENDED-ATTRIBUTES as it now handles both SELinux context |
| 1010 | and ACL entries. | 1013 | and ACL entries. |