aboutsummaryrefslogtreecommitdiffstats
path: root/src/dired.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dired.c')
-rw-r--r--src/dired.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c
index 3dca9d24f67..a4c8621e9c0 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -152,7 +152,7 @@ directory_files_internal (Lisp_Object directory, Lisp_Object full,
152 file-attributes on filenames, both of which can throw, so we must 152 file-attributes on filenames, both of which can throw, so we must
153 do a proper unwind-protect. */ 153 do a proper unwind-protect. */
154 record_unwind_protect (directory_files_internal_unwind, 154 record_unwind_protect (directory_files_internal_unwind,
155 make_save_value (d, 0)); 155 make_save_pointer (d));
156 156
157#ifdef WINDOWSNT 157#ifdef WINDOWSNT
158 if (attrs) 158 if (attrs)
@@ -465,7 +465,7 @@ file_name_completion (Lisp_Object file, Lisp_Object dirname, bool all_flag,
465 report_file_error ("Opening directory", Fcons (dirname, Qnil)); 465 report_file_error ("Opening directory", Fcons (dirname, Qnil));
466 466
467 record_unwind_protect (directory_files_internal_unwind, 467 record_unwind_protect (directory_files_internal_unwind,
468 make_save_value (d, 0)); 468 make_save_pointer (d));
469 469
470 /* Loop reading blocks */ 470 /* Loop reading blocks */
471 /* (att3b compiler bug requires do a null comparison this way) */ 471 /* (att3b compiler bug requires do a null comparison this way) */