Mercurial > emacs
changeset 3829:4130587b6ffc
* fileio.c (Fset_visited_file_modtime): We're only passing two
arguments to the file name handler; use call2, not call3.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 19 Jun 1993 01:04:50 +0000 |
parents | c9f18a7140f9 |
children | 205d69567177 |
files | src/fileio.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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; }