Mercurial > emacs
changeset 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 | bcda42f1f3db |
children | ec668c07bca2 |
files | src/fileio.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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))