aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-29 00:52:55 +0000
committerRichard M. Stallman2001-11-29 00:52:55 +0000
commit204ee271638c4cfb437cc536410a273d49c79a04 (patch)
tree44fea5e4ea7e7d793f13a895dfb98f049965dd64 /src
parent99b7e54396efe3d1f77d2434b8422fc4eebb9fb2 (diff)
downloademacs-204ee271638c4cfb437cc536410a273d49c79a04.tar.gz
emacs-204ee271638c4cfb437cc536410a273d49c79a04.zip
(Ffind_file_name_handler): Avoid initializer for `result'.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 2b9d87d54df..331d5c85d33 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -336,9 +336,10 @@ use the standard functions without calling themselves recursively. */)
336 Lisp_Object filename, operation; 336 Lisp_Object filename, operation;
337{ 337{
338 /* This function must not munge the match data. */ 338 /* This function must not munge the match data. */
339 Lisp_Object chain, inhibited_handlers, result = Qnil; 339 Lisp_Object chain, inhibited_handlers, result;
340 int pos = -1; 340 int pos = -1;
341 341
342 result = Qnil;
342 CHECK_STRING (filename); 343 CHECK_STRING (filename);
343 344
344 if (EQ (operation, Vinhibit_file_name_operation)) 345 if (EQ (operation, Vinhibit_file_name_operation))