>>>>"BW" == Ben Wing <ben(a)xemacs.org>
writes:
BW> it would be better if you could put the closing paren outside the
BW> ifdef, to keep the paren count clean.
I'll keep that in mind.
src/ChangeLog addition:
2005-11-02 Marcus Crestani <crestani(a)xemacs.org>
* realpath.c (readlink_or_correct_case): Move the closing paren
outside the ifdef.
xemacs-21.5 source patch:
Diff command: cvs -q diff -u
Files affected: src/realpath.c
Index: src/realpath.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/realpath.c,v
retrieving revision 1.22
diff -u -r1.22 realpath.c
--- src/realpath.c 2 Nov 2005 03:30:19 -0000 1.22
+++ src/realpath.c 2 Nov 2005 09:41:17 -0000
@@ -81,10 +81,11 @@
static int
readlink_or_correct_case (const Ibyte *name, Ibyte *buf, Bytecount size,
#ifndef WIN32_ANY
- Boolint UNUSED (links_only))
+ Boolint UNUSED (links_only)
#else
- Boolint links_only)
+ Boolint links_only
#endif
+ )
{
#ifndef WIN32_ANY
return qxe_readlink (name, buf, (size_t) size);
--
Marcus