aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index ff79504430c..24f53e9f3bb 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -173,10 +173,10 @@ A file name is handled if one of the regular expressions in\n\
173 Lisp_Object filename; 173 Lisp_Object filename;
174{ 174{
175 /* This function must not munge the match data. */ 175 /* This function must not munge the match data. */
176 Lisp_Object chain;
176 177
177 CHECK_STRING (filename, 0); 178 CHECK_STRING (filename, 0);
178 179
179 Lisp_Object chain;
180 for (chain = Vfile_name_handler_alist; XTYPE (chain) == Lisp_Cons; 180 for (chain = Vfile_name_handler_alist; XTYPE (chain) == Lisp_Cons;
181 chain = XCONS (chain)->cdr) 181 chain = XCONS (chain)->cdr)
182 { 182 {