Re: Feature request/ideas

2005-03-05 Thread Frank Hemer
On Saturday 05 March 2005 00:15, Derek Price wrote: Derek Price wrote: Mark D. Baushke wrote: | Therefore, I suppose that there could be a need for .origin to be | the first revision on TRUNK This would seldom mean much across multiple files, so I still think .origin should not be

Recent checkins to lib/xgetcwd.c breaks Windows

2005-03-05 Thread Jim Hyslop
The recent checkin to lib/xgetcwd.c changes the implementation of xgetwd() from: char * xgetwd () { char *cwd; char *ret; unsigned path_max; errno = 0; path_max = (unsigned) PATH_MAX; path_max += 2;/* The getcwd docs say to do this. */ cwd = xmalloc (path_max);