From 71b4ae3a0a08a934e85ae31fb1939e6aa9644d3f Mon Sep 17 00:00:00 2001 From: hallgren Date: Wed, 10 May 2017 12:59:57 +0000 Subject: [PATCH] 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. --- src/server/PGFService.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)