From dee5b1ca3938c134706860d7790abf8619257b52 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 3 Dec 2009 20:54:56 +0000 Subject: [PATCH] make unelided transaction printing the default --- Ledger/LedgerTransaction.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ledger/LedgerTransaction.hs b/Ledger/LedgerTransaction.hs index 802a83893..8b242c5d4 100644 --- a/Ledger/LedgerTransaction.hs +++ b/Ledger/LedgerTransaction.hs @@ -14,7 +14,7 @@ import Ledger.Posting import Ledger.Amount -instance Show LedgerTransaction where show = showLedgerTransaction +instance Show LedgerTransaction where show = showLedgerTransactionUnelided instance Show ModifierTransaction where show t = "= " ++ mtvalueexpr t ++ "\n" ++ unlines (map show (mtpostings t))