summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorJames Jurach <muaddib@erf.net>2003-07-02 08:31:05 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-02 19:39:11 +0000
commitdea2849036f7f874ea24a97b41ef1b738aa592ca (patch)
tree4b49ab128ff51fca1ae33d55b5ab1bd7bf8f73f8 /handy.h
parentd6df3700e9fd7f8b471288012f05c37f69c233f6 (diff)
downloadperl-dea2849036f7f874ea24a97b41ef1b738aa592ca.tar.gz
line numbers are given % 64k
Message-ID: <20030702183105.GA4837@lebowski> p4raw-id: //depot/perl@19934
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/handy.h b/handy.h
index 9f0fb3cc4d..94798f4342 100644
--- a/handy.h
+++ b/handy.h
@@ -512,12 +512,12 @@ Converts the specified character to lowercase.
# define toCTRL(c) (toUPPER(c) ^ 64)
#endif
-/* Line numbers are unsigned, 16 bits. */
-typedef U16 line_t;
+/* Line numbers are unsigned, 32 bits. */
+typedef U32 line_t;
#ifdef lint
#define NOLINE ((line_t)0)
#else
-#define NOLINE ((line_t) 65535)
+#define NOLINE ((line_t) 4294967295UL)
#endif