Mercurial > emacs
comparison 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 |
comparison
equal
deleted
inserted
replaced
41654:bcda42f1f3db | 41655:fccc74affd73 |
---|---|
334 use the standard functions without calling themselves recursively. */) | 334 use the standard functions without calling themselves recursively. */) |
335 (filename, operation) | 335 (filename, operation) |
336 Lisp_Object filename, operation; | 336 Lisp_Object filename, operation; |
337 { | 337 { |
338 /* This function must not munge the match data. */ | 338 /* This function must not munge the match data. */ |
339 Lisp_Object chain, inhibited_handlers, result = Qnil; | 339 Lisp_Object chain, inhibited_handlers, result; |
340 int pos = -1; | 340 int pos = -1; |
341 | 341 |
342 result = Qnil; | |
342 CHECK_STRING (filename); | 343 CHECK_STRING (filename); |
343 | 344 |
344 if (EQ (operation, Vinhibit_file_name_operation)) | 345 if (EQ (operation, Vinhibit_file_name_operation)) |
345 inhibited_handlers = Vinhibit_file_name_handlers; | 346 inhibited_handlers = Vinhibit_file_name_handlers; |
346 else | 347 else |