From: Richard M. Stallman Date: Thu, 29 Nov 2001 00:52:55 +0000 (+0000) Subject: (Ffind_file_name_handler): Avoid initializer for `result'. X-Git-Tag: ttn-vms-21-2-B4~18052 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=204ee271638c4cfb437cc536410a273d49c79a04;p=emacs.git (Ffind_file_name_handler): Avoid initializer for `result'. --- 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. */) 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))