diff options
| author | hallgren <hallgren@chalmers.se> | 2017-05-10 12:59:57 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2017-05-10 12:59:57 +0000 |
| commit | 766bc09058926ff9c61496b5f7f0c0852a4b00d5 (patch) | |
| tree | 1f31e0f3c8ee17a2f002b16fc967aa360f20c6d2 /src | |
| parent | 2675aec1f9e76cdb12fff1ff1b109f819df47e33 (diff) | |
PGFService.hs: fix problem when compiling without C run-time support
The previous patch introduced an indentation problem in the code that is used
when compiling without C run-time support.
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/PGFService.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/PGFService.hs b/src/server/PGFService.hs index a63af3dd8..0cf67c5c8 100644 --- a/src/server/PGFService.hs +++ b/src/server/PGFService.hs @@ -88,7 +88,7 @@ data Caches = Caches { pgfCache::Cache PGF, cncLabelsCache::Cache CncLabels } newPGFCache _ = do pgfCache <- newCache' PGF.readPGF lblCache <- newCache' (fmap PGF.getDepLabels . readFile) - clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile) + clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile) return $ Caches pgfCache lblCache clblCache flushPGFCache c = flushCache (pgfCache c) |
