comparison src/dired.c @ 2183:1d57af6e24e9

Fix the fix.
author Jim Blandy <jimb@redhat.com>
date Mon, 15 Mar 1993 04:17:09 +0000
parents 4ffe88f2e493
children 48f808108031
comparison
equal deleted inserted replaced
2182:4ffe88f2e493 2183:1d57af6e24e9
124 124
125 /* Because of file name handlers, these functions might call 125 /* Because of file name handlers, these functions might call
126 Ffuncall, and cause a GC. */ 126 Ffuncall, and cause a GC. */
127 GCPRO1 (match); 127 GCPRO1 (match);
128 dirname = Fexpand_file_name (dirname, Qnil); 128 dirname = Fexpand_file_name (dirname, Qnil);
129 UNGCPRO;
129 GCPRO2 (match, dirname); 130 GCPRO2 (match, dirname);
130 dirfilename = Fdirectory_file_name (dirname); 131 dirfilename = Fdirectory_file_name (dirname);
131 UNGCPRO; 132 UNGCPRO;
132 } 133 }
133 134