Mercurial > hg > xemacs-beta
comparison src/dired.c @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | 9ee227acff29 |
children | 859a2309aef8 |
comparison
equal
deleted
inserted
replaced
15:ad457d5f7d04 | 16:0293115a14e9 |
---|---|
345 ** It would not actually be helpful to the user to ignore any possible | 345 ** It would not actually be helpful to the user to ignore any possible |
346 completions when making a list of them.** */ | 346 completions when making a list of them.** */ |
347 | 347 |
348 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) | 348 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
349 { | 349 { |
350 d = opendir ((char *) | 350 d = opendir ((char *) XSTRING_DATA (Fdirectory_file_name (dirname))); |
351 XSTRING_DATA (Fdirectory_file_name (dirname))); | |
352 if (!d) | 351 if (!d) |
353 report_file_error ("Opening directory", list1 (dirname)); | 352 report_file_error ("Opening directory", list1 (dirname)); |
354 | 353 |
355 /* Loop reading blocks */ | 354 /* Loop reading blocks */ |
356 while (1) | 355 while (1) |