aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-16 23:59:56 +0000
committerRichard M. Stallman1994-01-16 23:59:56 +0000
commit89de89c7d16c384ccb68b9d06c8422db92965e3c (patch)
tree536a79c65bf4a6802f04f82f6a36e6cf9b49afd7 /src
parent849cfd72e1cdf38c6b33d730809946f1c3e53a93 (diff)
downloademacs-89de89c7d16c384ccb68b9d06c8422db92965e3c.tar.gz
emacs-89de89c7d16c384ccb68b9d06c8422db92965e3c.zip
(Ffile_symlink_p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 702d09f41b8..f69a0b57d5a 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2182,9 +2182,9 @@ See also `file-exists-p' and `file-attributes'.")
2182} 2182}
2183 2183
2184DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0, 2184DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2185 "If file FILENAME is the name of a symbolic link\n\ 2185 "Return non-nil if file FILENAME is the name of a symbolic link.\n\
2186returns the name of the file to which it is linked.\n\ 2186The value is the name of the file to which it is linked.\n\
2187Otherwise returns NIL.") 2187Otherwise returns nil.")
2188 (filename) 2188 (filename)
2189 Lisp_Object filename; 2189 Lisp_Object filename;
2190{ 2190{