# HG changeset patch # User Richard M. Stallman # Date 1006995175 0 # Node ID fccc74affd73cc97d857ddedde53901b7245f0b1 # Parent bcda42f1f3db0545a8242dc585459835f4810e01 (Ffind_file_name_handler): Avoid initializer for `result'. diff -r bcda42f1f3db -r fccc74affd73 src/fileio.c --- 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))