diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 8f675bfcda6..7babba40f28 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-06-10 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * files.texi (File Attributes): Fix typo. | ||
| 4 | |||
| 1 | 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * functions.texi (Lambda Expressions): Lambda expressions don't | 7 | * functions.texi (Lambda Expressions): Lambda expressions don't |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 971e38f20b7..a376ac0d586 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1166,11 +1166,11 @@ target. However, they both recursively follow symbolic links at all | |||
| 1166 | levels of parent directories. | 1166 | levels of parent directories. |
| 1167 | 1167 | ||
| 1168 | @defun file-nlinks filename | 1168 | @defun file-nlinks filename |
| 1169 | This functions returns the number of names (i.e., hard links) that | 1169 | This function returns the number of names (i.e., hard link(s) + 1) |
| 1170 | file @var{filename} has. If the file does not exist, then this function | 1170 | that file @var{filename} has. If the file does not exist, then this |
| 1171 | returns @code{nil}. Note that symbolic links have no effect on this | 1171 | function returns @code{nil}. Note that symbolic links have no effect |
| 1172 | function, because they are not considered to be names of the files they | 1172 | on this function, because they are not considered to be names of the |
| 1173 | link to. | 1173 | files they link to. |
| 1174 | 1174 | ||
| 1175 | @example | 1175 | @example |
| 1176 | @group | 1176 | @group |