aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-06-19 01:04:50 +0000
committerJim Blandy <[email protected]>1993-06-19 01:04:50 +0000
commit76c881b0156bf38c188aec63909b228212088267 (patch)
treeabea2d2fa767ea564e0d73806fe78df948a981c1
parentea3d9551e8eb9477a413b716bb881bb874d11394 (diff)
* fileio.c (Fset_visited_file_modtime): We're only passing two
arguments to the file name handler; use call2, not call3.
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index d21007a7ce..41838f0937 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2941,7 +2941,7 @@ An argument specifies the modification time value to use\n\
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;
}