(Ffind_file_name_handler): Avoid initializer for `result'.
authorRichard M. Stallman <rms@gnu.org>
Thu, 29 Nov 2001 00:52:55 +0000 (00:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 29 Nov 2001 00:52:55 +0000 (00:52 +0000)
src/fileio.c

index 2b9d87d..331d5c8 100644 (file)
@@ -336,9 +336,10 @@ use the standard functions without calling themselves recursively.  */)
      Lisp_Object filename, operation;
 {
   /* This function must not munge the match data.  */
-  Lisp_Object chain, inhibited_handlers, result = Qnil;
+  Lisp_Object chain, inhibited_handlers, result;
   int pos = -1;
 
+  result = Qnil;
   CHECK_STRING (filename);
 
   if (EQ (operation, Vinhibit_file_name_operation))