Mercurial > emacs
changeset 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 | 408c7ee69be7 |
children | c9938769a6b7 |
files | src/fileio.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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; }