summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlemb <wlemb>2002-04-02 22:30:25 +0000
committerwlemb <wlemb>2002-04-02 22:30:25 +0000
commit195deb9abb9017b91effa6c1dd7889ffc1f44ec0 (patch)
tree3f5399ab914762c0a75465c496b67e1dcb9f3f40
parent4451752f38555e3846bb8ce1b2122272dd2eeee9 (diff)
downloadgroff-195deb9abb9017b91effa6c1dd7889ffc1f44ec0.tar.gz
* src/include/nonposix.h, src/roff/groff/pipeline.c:
s/__CYGWIN32__/__CYGWIN__/.
-rw-r--r--ChangeLog5
-rw-r--r--src/include/nonposix.h4
-rw-r--r--src/roff/groff/pipeline.c4
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b0a124c..82993013 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-02 P. Alejandro Lopez-Valencia <dradul@yahoo.com>
+
+ * src/include/nonposix.h, src/roff/groff/pipeline.c:
+ s/__CYGWIN32__/__CYGWIN__/.
+
2002-03-28 Gaius Mulley <gaius@glam.ac.uk>
* doc/gnu.xpm: New image contributed by Emily Mulley.
diff --git a/src/include/nonposix.h b/src/include/nonposix.h
index 3b0b43b6..e5e688f5 100644
--- a/src/include/nonposix.h
+++ b/src/include/nonposix.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
Written by Eli Zaretskii (eliz@is.elta.co.il)
This file is part of groff.
@@ -28,7 +28,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#endif
#if defined(__MSDOS__) \
- || (defined(_WIN32) && !defined(_UWIN) && !defined(__CYGWIN32__))
+ || (defined(_WIN32) && !defined(_UWIN) && !defined(__CYGWIN__))
/* Binary I/O nuisances. Note: "setmode" is right for DJGPP and
Borland; Windows compilers might need _setmode or some such. */
diff --git a/src/roff/groff/pipeline.c b/src/roff/groff/pipeline.c
index af3452db..03fda1ae 100644
--- a/src/roff/groff/pipeline.c
+++ b/src/roff/groff/pipeline.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001
+/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002
Free Software Foundation, Inc.
Written by James Clark (jjc@jclark.com)
@@ -99,7 +99,7 @@ static char *i_to_a P((int));
via temporary files... */
#if defined(__MSDOS__) \
- || (defined(_WIN32) && !defined(_UWIN) && !defined(__CYGWIN32__))
+ || (defined(_WIN32) && !defined(_UWIN) && !defined(__CYGWIN__))
#include <process.h>
#include <fcntl.h>