projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9313662
)
byte.pm and HINT_BYTE don't match (0x8, not 0x10!)
Gurusamy Sarathy [Fri, 4 Feb 2000 01:09:37 +0000 (
01:09
+0000)]
p4raw-id: //depot/perl@4969
lib/byte.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/byte.pm
b/lib/byte.pm
index
33ffb76
..
569fa66
100644
(file)
--- a/
lib/byte.pm
+++ b/
lib/byte.pm
@@
-1,11
+1,11
@@
package byte;
sub import {
- $^H |= 0x00000010;
+ $^H |= 0x00000008;
}
sub unimport {
- $^H &= ~0x00000010;
+ $^H &= ~0x00000008;
}
sub AUTOLOAD {