Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alexbiehl-gc
GHC
Commits
e9cb71bc
Commit
e9cb71bc
authored
25 years ago
by
Simon Marlow
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1999-06-14 10:36:51 by simonmar]
Don't chop off the last character of the buffer.
parent
7f94b1d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/compiler/utils/StringBuffer.lhs
+6
-4
6 additions, 4 deletions
ghc/compiler/utils/StringBuffer.lhs
with
6 additions
and
4 deletions
ghc/compiler/utils/StringBuffer.lhs
+
6
−
4
View file @
e9cb71bc
...
...
@@ -233,7 +233,7 @@ trySlurp handle sz_i chunk =
slurp c off | off >=# max_off = do
let new_sz = chunk_sz *# 2#
chunk' <- reAllocMem chunk (I# new_sz)
slurpFile c off chunk' new_sz (new_sz -# tAB_SIZE)
slurpFile c off chunk' new_sz (new_sz -#
(
tAB_SIZE
+# 1#)
)
slurp c off = do
intc <- mayBlock fo (_ccall_ fileGetc fo)
if intc == ((-1)::Int)
...
...
@@ -261,12 +261,14 @@ trySlurp handle sz_i chunk =
in do
-- allow space for a full tab at the end of the buffer
-- (that's what the max_off thing is for)
(chunk', rc) <- slurpFile 0# 0# chunk chunk_sz (chunk_sz -# tAB_SIZE)
-- (that's what the max_off thing is for),
-- and add 1 to allow room for the final sentinel \NUL at
-- the end of the file.
(chunk', rc) <- slurpFile 0# 0# chunk chunk_sz (chunk_sz -# (tAB_SIZE +# 1#))
writeHandle handle handle_
if rc < (0::Int)
then constructErrorAndFail "slurpFile"
else return (chunk', rc)
else return (chunk', rc
+1 {-room for sentinel-}
)
reAllocMem :: Addr -> Int -> IO Addr
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment