forked from GitHub/gf-core
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.
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user