From 7eb53df5a09c3cdab06cdea01efc762dac82d964 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Tue, 24 Jul 2007 18:32:16 +0000 Subject: [PATCH] Fix XPF [CFP Franc Pacifique] to not use cents. By Dominique Corbex : The XPF currency [CFP Franc Pacifique], used in French Polynesia, New Caledonia, Wallis and Futuna islands has 2 digits after the decimal point in Gnucash. That's wrong as the XPF currency makes no use of cents. (see http://www.wikipedia.com/wiki/Currency_codes and search for XPF) git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16353 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/iso-4217-currencies.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/iso-4217-currencies.scm b/src/engine/iso-4217-currencies.scm index 64bbe0c1b4..3a757cb5d6 100644 --- a/src/engine/iso-4217-currencies.scm +++ b/src/engine/iso-4217-currencies.scm @@ -47,7 +47,7 @@ ( "Burundi Franc" "franc" "centime" "ISO4217" "BIF" "108" 1 1 ) ( "CFA Franc BEAC" "franc" "centime" "ISO4217" "XAF" "950" 1 1 ) ( "CFA Franc BCEAO" "franc" "centime" "ISO4217" "XOF" "952" 1 1 ) -( "CFP Franc Pacifique" "franc" "centime" "ISO4217" "XPF" "953" 100 100 ) +( "CFP Franc Pacifique" "franc" "centime" "ISO4217" "XPF" "953" 1 1 ) ( "Cambodia Riel" "riel" "sen" "ISO4217" "KHR" "116" 100 100 ) ( "Canadian Dollar" "dollar" "cent" "ISO4217" "CAD" "124" 100 100 ) ( "Cape Verde Escudo" "escudo" "centavo" "ISO4217" "CVE" "132" 100 100 )