diff src/fileio.c @ 3721:4550c56785d8

(Fset_visited_file_modtime): Don't give the handler the filename as an argument.
author Richard M. Stallman <rms@gnu.org>
date Mon, 14 Jun 1993 03:49:04 +0000
parents 309c27256ceb
children 04b741620a50
line wrap: on
line diff
--- a/src/fileio.c	Sun Jun 13 23:57:33 1993 +0000
+++ b/src/fileio.c	Mon Jun 14 03:49:04 1993 +0000
@@ -2910,7 +2910,8 @@
 	 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;
     }