aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 35640363046..957c43d07b7 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -339,16 +339,18 @@ static int
339reread_doc_file (file) 339reread_doc_file (file)
340 Lisp_Object file; 340 Lisp_Object file;
341{ 341{
342#if 0
342 Lisp_Object reply, prompt[3]; 343 Lisp_Object reply, prompt[3];
343 struct gcpro gcpro1; 344 struct gcpro gcpro1;
344 GCPRO1 (file); 345 GCPRO1 (file);
345 prompt[0] = build_string ("File "); 346 prompt[0] = build_string ("File ");
346 prompt[1] = NILP (file) ? Vdoc_file_name : file; 347 prompt[1] = NILP (file) ? Vdoc_file_name : file;
347 prompt[2] = build_string (" is out-of-sync. Reload? "); 348 prompt[2] = build_string (" is out of sync. Reload? ");
348 reply = Fy_or_n_p (Fconcat (3, prompt)); 349 reply = Fy_or_n_p (Fconcat (3, prompt));
349 UNGCPRO; 350 UNGCPRO;
350 if (NILP (reply)) 351 if (NILP (reply))
351 return 0; 352 return 0;
353#endif
352 354
353 if (NILP (file)) 355 if (NILP (file))
354 Fsnarf_documentation (Vdoc_file_name); 356 Fsnarf_documentation (Vdoc_file_name);