Mail Archives: djgpp-workers/2000/08/12/03:00:02
> Date: Fri, 11 Aug 2000 16:58:00 +0200
> From: Laurynas Biveinis <lauras AT softhome DOT net>
>
> Feedback appreciated,
[snip]
> +@subheading Description
> +DOS does not support symbolic links. However, DJGPP emulates them---
> +this function creates a file with special size and format, so other
You should not leave a space between "---" and the following word,
because it will look wrong in the output if the formatting breaks the
line in another place. Here's an example of how it could look:
However, DJGPP emulates them-- this function creates...
> +DJGPP library functions transparently work with file which is pointed to
> +by symlink. Of course, it does not work outside DJGPP programs. Those
> +library functions which are simple wrappers about DOS calls do not
> +use symlinks neither.
Please leave 2 blanks after the dot which ends a sentence (here and
elsewhere).
> - /* Allow to say `ln -s src dest' when we really
> - mean `src.exe' and `dest.exe' */
Should we support this feature of the previous implementation?
(You don't need to delay the commit even if you think we should
support this; it can be added later.)
> + if (!__file_exists("fail1") || !__file_exists("fail2"))
> + {
> + fprintf(stderr, "Cannot run testsuite - required data files not found\n");
> + exit(1);
Didn't your patches add files test1 and test2, not fail1 and fail2?
Also, perhaps it's better to name the missing files in the error
message, so that the luser will know what files to look for.
- Raw text -