# HG changeset patch # User Richard M. Stallman # Date 1021824608 0 # Node ID 65ad2c8b301badecedd7a9ff9b0b96e64ee26c4d # Parent 2a9743cfbeab354b0f50dee8a9c7c2af8be174fc (reread_doc_file): Don't ask for confirmation. diff -r 2a9743cfbeab -r 65ad2c8b301b src/doc.c --- a/src/doc.c Sun May 19 16:09:28 2002 +0000 +++ b/src/doc.c Sun May 19 16:10:08 2002 +0000 @@ -339,16 +339,18 @@ 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);