aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorKarl Heuer1994-04-22 23:41:18 +0000
committerKarl Heuer1994-04-22 23:41:18 +0000
commita617e9133c6854861e327f90fe5f096a33abe4f3 (patch)
tree846aa6dd31e6a28b763ae07e67f18ddc618b415d /src/buffer.c
parent68395b70ec9564298aa91d5231f01388859666cb (diff)
downloademacs-a617e9133c6854861e327f90fe5f096a33abe4f3.tar.gz
emacs-a617e9133c6854861e327f90fe5f096a33abe4f3.zip
Pass operation to Ffind_file_name_handler.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index c9623cd4347..e7353d6c5bc 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -196,7 +196,7 @@ If there is no such live buffer, return nil.")
196 196
197 /* If the file name has special constructs in it, 197 /* If the file name has special constructs in it,
198 call the corresponding file handler. */ 198 call the corresponding file handler. */
199 handler = Ffind_file_name_handler (filename); 199 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
200 if (!NILP (handler)) 200 if (!NILP (handler))
201 return call2 (handler, Qget_file_buffer, filename); 201 return call2 (handler, Qget_file_buffer, filename);
202 202