# HG changeset patch # User Richard M. Stallman # Date 779534191 0 # Node ID 56c445a92c4c8994166a26539751b3ed32941935 # Parent 72b312ebaa1039e7ac5bea7e6c47f31170a02990 (Fset_default_file_modes): Doc fix. diff -r 72b312ebaa10 -r 56c445a92c4c src/fileio.c --- a/src/fileio.c Wed Sep 14 09:15:46 1994 +0000 +++ b/src/fileio.c Wed Sep 14 09:16:31 1994 +0000 @@ -2034,9 +2034,9 @@ DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ -Signals a `file-already-exists' error if a file NEWNAME already exists\n\ +Signals a `file-already-exists' error if a file LINKNAME already exists\n\ unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ -A number as third arg means request confirmation if NEWNAME already exists.\n\ +A number as third arg means request confirmation if LINKNAME already exists.\n\ This happens for interactive use with M-x.") (filename, linkname, ok_if_already_exists) Lisp_Object filename, linkname, ok_if_already_exists;