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 /bytecode.pl | |
parent | b2ce0fda3a46ec47a3c0b2c5696aaa867384eb2f (diff) | |
download | perl-11a7ac70a867da65019c2c04f8677bdcf4c9693e.tar.gz |
Change $=, $., $*, $%, and $- to be IVs instead of longs.
p4raw-id: //depot/perl@13346
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bytecode.pl b/bytecode.pl index 068d1ee3ab..0d0468846e 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -312,11 +312,11 @@ xlv_type LvTYPE(bstate->bs_sv) char xbm_useful BmUSEFUL(bstate->bs_sv) I32 xbm_previous BmPREVIOUS(bstate->bs_sv) U16 xbm_rare BmRARE(bstate->bs_sv) U8 -xfm_lines FmLINES(bstate->bs_sv) I32 -xio_lines IoLINES(bstate->bs_sv) long -xio_page IoPAGE(bstate->bs_sv) long -xio_page_len IoPAGE_LEN(bstate->bs_sv) long -xio_lines_left IoLINES_LEFT(bstate->bs_sv) long +xfm_lines FmLINES(bstate->bs_sv) IV +xio_lines IoLINES(bstate->bs_sv) IV +xio_page IoPAGE(bstate->bs_sv) IV +xio_page_len IoPAGE_LEN(bstate->bs_sv) IV +xio_lines_left IoLINES_LEFT(bstate->bs_sv) IV xio_top_name IoTOP_NAME(bstate->bs_sv) pvcontents xio_top_gv *(SV**)&IoTOP_GV(bstate->bs_sv) svindex xio_fmt_name IoFMT_NAME(bstate->bs_sv) pvcontents |