diff options
author | Xue Fuqiao <xfq.free@gmail.com> | 2013-06-10 19:19:12 +0800 |
---|---|---|
committer | Xue Fuqiao <xfq.free@gmail.com> | 2013-06-10 19:19:12 +0800 |
commit | e4568f3bc50daf2a0a95b548a3b4a38b7eec9b45 (patch) | |
tree | f912bfad42488a7fc70eb059558bf5d31a9ceeec /doc | |
parent | 2c71cd647b3a678954ddb7208def011a38fd55c9 (diff) | |
download | emacs-e4568f3bc50daf2a0a95b548a3b4a38b7eec9b45.tar.gz |
* doc/lispref/files.texi (File Attributes): Fix typo.
Diffstat (limited to 'doc')
-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 @@ +2013-06-10 Xue Fuqiao <xfq.free@gmail.com> + + * files.texi (File Attributes): Fix typo. + 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca> * 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 levels of parent directories. @defun file-nlinks filename -This functions returns the number of names (i.e., hard links) that -file @var{filename} has. If the file does not exist, then this function -returns @code{nil}. Note that symbolic links have no effect on this -function, because they are not considered to be names of the files they -link to. +This function returns the number of names (i.e., hard link(s) + 1) +that file @var{filename} has. If the file does not exist, then this +function returns @code{nil}. Note that symbolic links have no effect +on this function, because they are not considered to be names of the +files they link to. @example @group |