diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-04-22 23:41:18 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-04-22 23:41:18 +0000 |
commit | a617e9133c6854861e327f90fe5f096a33abe4f3 (patch) | |
tree | 846aa6dd31e6a28b763ae07e67f18ddc618b415d /src/lread.c | |
parent | 68395b70ec9564298aa91d5231f01388859666cb (diff) | |
download | emacs-a617e9133c6854861e327f90fe5f096a33abe4f3.tar.gz |
Pass operation to Ffind_file_name_handler.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index c5185eebb00..bf6b1f4a2ba 100644 --- a/src/lread.c +++ b/src/lread.c @@ -350,7 +350,7 @@ Return t if file exists.") str = Fsubstitute_in_file_name (str); /* If file name is magic, call the handler. */ - handler = Ffind_file_name_handler (str); + handler = Ffind_file_name_handler (str, Qload); if (!NILP (handler)) return call5 (handler, Qload, str, noerror, nomessage, nosuffix); |