diff src/fileio.c @ 41655:fccc74affd73

(Ffind_file_name_handler): Avoid initializer for `result'.
author Richard M. Stallman <rms@gnu.org>
date Thu, 29 Nov 2001 00:52:55 +0000
parents 3a10e73aa1c1
children 8151a2b431d0
line wrap: on
line diff
--- a/src/fileio.c	Thu Nov 29 00:52:02 2001 +0000
+++ b/src/fileio.c	Thu Nov 29 00:52:55 2001 +0000
@@ -336,9 +336,10 @@
      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))