Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ara Adkins
Glasgow Haskell Compiler
Commits
8b0d04d2
Commit
8b0d04d2
authored
Sep 23, 2003
by
panne
Browse files
[project @ 2003-09-23 10:09:17 by panne]
Unbreak Show instance for Ptr caused by the changes to showHex merge to STABLE
parent
0e2b2bf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/base/Foreign/Ptr.hs
View file @
8b0d04d2
...
...
@@ -79,7 +79,7 @@ instance Show (Ptr a) where
showsPrec
p
(
Ptr
a
)
rs
=
pad_out
(
showHex
(
word2Integer
(
int2Word
#
(
addr2Int
#
a
)))
""
)
rs
where
-- want 0s prefixed to pad it out to a fixed length.
pad_out
(
'0'
:
'x'
:
ls
)
rs
=
pad_out
ls
rs
=
'0'
:
'x'
:
(
replicate
(
2
*
SIZEOF_HSPTR
-
length
ls
)
'0'
)
++
ls
++
rs
-- word2Integer :: Word# -> Integer (stolen from Word.lhs)
word2Integer
w
=
case
word2Integer
#
w
of
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment