aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-03-14 22:00:34 +0000
committerKarl Heuer1994-03-14 22:00:34 +0000
commit0de25302b8f0ad0186f8d1e083df51a147763b30 (patch)
tree03bb46e99efb6c0c94f94462f172b8a050ada166 /src
parent9597f4b8a385407cfcfa287ef5133c0d15954a2a (diff)
downloademacs-0de25302b8f0ad0186f8d1e083df51a147763b30.tar.gz
emacs-0de25302b8f0ad0186f8d1e083df51a147763b30.zip
(Fread_file_name): Delete docstring of second version of function, to avoid
confusing make-docfile.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 0e6f8b3aff0..ac32a442a9e 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3765,14 +3765,9 @@ DIR defaults to current buffer's directory default.")
3765 3765
3766#if 0 /* Old version */ 3766#if 0 /* Old version */
3767DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, 3767DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0,
3768 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ 3768 /* Don't confuse make-docfile by having two doc strings for this function.
3769Value is not expanded---you must call `expand-file-name' yourself.\n\ 3769 make-docfile does not pay attention to #if, for good reason! */
3770Default name to DEFAULT if user enters a null string.\n\ 3770 0)
3771 (If DEFAULT is omitted, the visited file name is used.)\n\
3772Fourth arg MUSTMATCH non-nil means require existing file's name.\n\
3773 Non-nil and non-t means also require confirmation after completion.\n\
3774Fifth arg INITIAL specifies text to start with.\n\
3775DIR defaults to current buffer's directory default.")
3776 (prompt, dir, defalt, mustmatch, initial) 3771 (prompt, dir, defalt, mustmatch, initial)
3777 Lisp_Object prompt, dir, defalt, mustmatch, initial; 3772 Lisp_Object prompt, dir, defalt, mustmatch, initial;
3778{ 3773{