Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
2d52ee06
Commit
2d52ee06
authored
Mar 01, 2007
by
simonpj@microsoft.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not go into an infinite loop when pretty-printer finds a negative indent (Trac #1176)
parent
0180405d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
compiler/utils/Pretty.lhs
compiler/utils/Pretty.lhs
+5
-4
No files found.
compiler/utils/Pretty.lhs
View file @
2d52ee06
...
...
@@ -225,6 +225,7 @@ allow you to use either GHC or Hugs. To get GHC, just set the CPP variable
#define GR >#
#define GREQ >=#
#define LT <#
#define LTEQ <=#
#define DIV `quotInt#`
...
...
@@ -994,11 +995,11 @@ cant_fail = error "easy_display: NoDoc"
indent n | n GREQ ILIT(8) = '\t' : indent (n MINUS ILIT(8))
| otherwise = spaces n
multi_ch
ILIT(0) ch
= ""
multi_ch n ch
= ch : multi_ch (n MINUS ILIT(1)) ch
multi_ch
n ch | n LTEQ ILIT(0)
= ""
| otherwise
= ch : multi_ch (n MINUS ILIT(1)) ch
spaces ILIT(0) = ""
spaces n
= ' ' : spaces (n MINUS ILIT(1))
spaces
n | n LTEQ
ILIT(0) = ""
| otherwise
= ' ' : spaces (n MINUS ILIT(1))
\end{code}
\begin{code}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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