Re: [doc] misc typos

2006-09-04 Thread Neil Jerram
Marco Maggi [EMAIL PROTECTED] writes: 'scm_dynwind_free()' is not documented with @deftypefun, so it does not appear in the functions index. Thanks; I've added doc for this now. diff --recursive original/doc/ref/api-compound.texi modified/doc/ref/api-compound.texi 1046c1046 tabel above

Re: Minor documentation layout flaws

2006-09-04 Thread Ludovic Courtès
Hi, percy tiglao [EMAIL PROTECTED] writes: For example, on page 40 (the pg 40 in the ps output... maybe different) you've got the line: Type (backtrace) to get more information or (debug) to enter the debugger. This doesn't go off the page; but it nearly does. But this is obviously the

Re: MinGW port

2006-09-04 Thread Neil Jerram
Nils Durner [EMAIL PROTECTED] writes: Hi, the attached patch fixes compiler errors on Win32/MinGW. - execv (exec_file, exec_argv); + execv (exec_file, +#ifdef __MINGW32__ + (const char * const *) +#endif + exec_argv); Thanks for the patch, but do you understand exactly what

Re: MinGW port

2006-09-04 Thread Kevin Ryde
Neil Jerram [EMAIL PROTECTED] writes: do you understand exactly what the Win32/MinGW compiler is complaining about? The function takes const char * const * but the actual parameter is char **. I've never understood why that should provoke a complaint. Const is a promise by the func that it