diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-29 01:22:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-29 01:22:02 +0000 |
commit | 11a7ac70a867da65019c2c04f8677bdcf4c9693e (patch) | |
tree | 6e85a1f8a424bb674fb9f6071a740a8036205d81 /sv.h | |
parent | b2ce0fda3a46ec47a3c0b2c5696aaa867384eb2f (diff) | |
download | perl-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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; /* $~ */ |