* readline.c (filename_completion_function): use struct dirent
authorStu Grossman <grossman@cygnus>
Tue, 19 Nov 1991 08:02:35 +0000 (08:02 +0000)
committerStu Grossman <grossman@cygnus>
Tue, 19 Nov 1991 08:02:35 +0000 (08:02 +0000)
instead of struct direct.

readline/ChangeLog
readline/readline.c

index 81fe3d569411df11dd2f70ded2a7156e31e35ed4..56cf39ad512c476e53c42478500c23953016361d 100644 (file)
@@ -1,3 +1,8 @@
+Mon Nov 18 23:59:52 1991  Stu Grossman  (grossman at cygnus.com)
+
+       * readline.c (filename_completion_function):  use struct dirent
+       instead of struct direct.
+
 Fri Nov  1 07:02:13 1991  Brian Fox  (bfox at gnuwest.fsf.org)
 
        * readline.c (rl_translate_keyseq) Make C-? translate to RUBOUT
index 023407d22c01aae4c37027765bf412f9d28c3ddf..f4ae40e586269ceaeb5c7b94e37c3e39ef214787 100644 (file)
@@ -5137,7 +5137,7 @@ filename_completion_function (text, state)
   static char *users_dirname = (char *)NULL;
   static int filename_len;
 
-  struct direct *entry = (struct direct *)NULL;
+  struct dirent *entry = (struct dirent *)NULL;
 
   /* If we don't have any state, then do some initialization. */
   if (!state)
This page took 0.028911 seconds and 4 git commands to generate.