]> code.delx.au - gnu-emacs/commitdiff
(Fset_visited_file_modtime): Don't give the handler
authorRichard M. Stallman <rms@gnu.org>
Mon, 14 Jun 1993 03:49:04 +0000 (03:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 14 Jun 1993 03:49:04 +0000 (03:49 +0000)
the filename as an argument.

src/fileio.c

index 68ad27909692212e953f9e662eb028f7f2a45799..e3a2cc9f2bb65bf686a911b911b03e95ab1f0691 100644 (file)
@@ -2910,7 +2910,8 @@ An argument specifies the modification time value to use\n\
         call the corresponding file handler.  */
       handler = Ffind_file_name_handler (filename);
       if (!NILP (handler))
-       return call3 (handler, Qset_visited_file_modtime, filename, Qnil);
+       /* The handler can find the file name the same way we did.  */
+       return call3 (handler, Qset_visited_file_modtime, Qnil);
       else if (stat (XSTRING (filename)->data, &st) >= 0)
        current_buffer->modtime = st.st_mtime;
     }