summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-29 01:22:02 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-29 01:22:02 +0000
commit11a7ac70a867da65019c2c04f8677bdcf4c9693e (patch)
tree6e85a1f8a424bb674fb9f6071a740a8036205d81 /sv.h
parentb2ce0fda3a46ec47a3c0b2c5696aaa867384eb2f (diff)
downloadperl-11a7ac70a867da65019c2c04f8677bdcf4c9693e.tar.gz
Change $=, $., $*, $%, and $- to be IVs instead of longs.
p4raw-id: //depot/perl@13346
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sv.h b/sv.h
index 7bc11e9863..a80989a7fa 100644
--- a/sv.h
+++ b/sv.h
@@ -351,7 +351,7 @@ struct xpvfm {
#endif /* USE_5005THREADS */
cv_flags_t xcv_flags;
- I32 xfm_lines;
+ IV xfm_lines;
};
struct xpvio {
@@ -378,10 +378,10 @@ struct xpvio {
DIR * xiou_dirp; /* for opendir, readdir, etc */
void * xiou_any; /* for alignment */
} xio_dirpu;
- long xio_lines; /* $. */
- long xio_page; /* $% */
- long xio_page_len; /* $= */
- long xio_lines_left; /* $- */
+ IV xio_lines; /* $. */
+ IV xio_page; /* $% */
+ IV xio_page_len; /* $= */
+ IV xio_lines_left; /* $- */
char * xio_top_name; /* $^ */
GV * xio_top_gv; /* $^ */
char * xio_fmt_name; /* $~ */