# HG changeset patch # User Jim Blandy # Date 740451890 0 # Node ID 4130587b6ffcbfe8c08977340d3636e1b40875a3 # Parent c9f18a7140f91d5d85a42b120f74ed20cdb37024 * fileio.c (Fset_visited_file_modtime): We're only passing two arguments to the file name handler; use call2, not call3. diff -r c9f18a7140f9 -r 4130587b6ffc src/fileio.c --- a/src/fileio.c Sat Jun 19 00:15:32 1993 +0000 +++ b/src/fileio.c Sat Jun 19 01:04:50 1993 +0000 @@ -2941,7 +2941,7 @@ handler = Ffind_file_name_handler (filename); if (!NILP (handler)) /* The handler can find the file name the same way we did. */ - return call3 (handler, Qset_visited_file_modtime, Qnil); + return call2 (handler, Qset_visited_file_modtime, Qnil); else if (stat (XSTRING (filename)->data, &st) >= 0) current_buffer->modtime = st.st_mtime; }