aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-05-19 16:10:08 +0000
committerRichard M. Stallman <[email protected]>2002-05-19 16:10:08 +0000
commit13d7dc77af7e9b832851e77f142299128e04fc73 (patch)
treed18c18443796dcd0282813cae55043098cf1e3d7 /src
parent1d9cc345732fd4f2d2d412959f3a2a4549a4b79b (diff)
(reread_doc_file): Don't ask for confirmation.
Diffstat (limited to 'src')
-rw-r--r--src/doc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index 3564036304..957c43d07b 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -339,16 +339,18 @@ static int
reread_doc_file (file)
Lisp_Object file;
{
+#if 0
Lisp_Object reply, prompt[3];
struct gcpro gcpro1;
GCPRO1 (file);
prompt[0] = build_string ("File ");
prompt[1] = NILP (file) ? Vdoc_file_name : file;
- prompt[2] = build_string (" is out-of-sync. Reload? ");
+ prompt[2] = build_string (" is out of sync. Reload? ");
reply = Fy_or_n_p (Fconcat (3, prompt));
UNGCPRO;
if (NILP (reply))
return 0;
+#endif
if (NILP (file))
Fsnarf_documentation (Vdoc_file_name);