unoidl2

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/unoidl2.git/
Log | Files | Refs

commit f1da0f69c792cca6e7c023847f3d192b9b1cd057
parent 2c65cf0923048e3d3f6a068b91f64cdc8364aee4
Author: Tomas Hlavaty <tom@logand.com>
Date:   Wed, 18 Jan 2012 09:52:01 +0100

missing newline fix

Diffstat:
Munoidl2java.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unoidl2java.c b/unoidl2java.c @@ -110,7 +110,7 @@ static void pr_enum(Any x) { // (enum Name T ONE TWO (THREE 3)) } pr(" public static "); pp(name); pl(" fromInt(int value) {"); pl(" switch(value) {"); - pr(" default: return null;"); + pl(" default: return null;"); n = 0; for(Any y = values; NIL != y; y = cdr(y)) { Any value = car(y);