diff options
| author | Richard M. Stallman | 1994-09-14 09:16:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-14 09:16:31 +0000 |
| commit | 11183104f3b41e0acb6871f11a23ae9f376de4a0 (patch) | |
| tree | ef6861826b5c772705cf79a186c4ef209327602d /src | |
| parent | 59750d69f8e43ccf753badbebef933db7638b771 (diff) | |
| download | emacs-11183104f3b41e0acb6871f11a23ae9f376de4a0.tar.gz emacs-11183104f3b41e0acb6871f11a23ae9f376de4a0.zip | |
(Fset_default_file_modes): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 1654d350ca2..036f9041a21 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2034,9 +2034,9 @@ This is what happens in interactive use with M-x.") | |||
| 2034 | DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | 2034 | DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, |
| 2035 | "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", | 2035 | "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", |
| 2036 | "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ | 2036 | "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ |
| 2037 | Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | 2037 | Signals a `file-already-exists' error if a file LINKNAME already exists\n\ |
| 2038 | unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | 2038 | unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ |
| 2039 | A number as third arg means request confirmation if NEWNAME already exists.\n\ | 2039 | A number as third arg means request confirmation if LINKNAME already exists.\n\ |
| 2040 | This happens for interactive use with M-x.") | 2040 | This happens for interactive use with M-x.") |
| 2041 | (filename, linkname, ok_if_already_exists) | 2041 | (filename, linkname, ok_if_already_exists) |
| 2042 | Lisp_Object filename, linkname, ok_if_already_exists; | 2042 | Lisp_Object filename, linkname, ok_if_already_exists; |