[seed] Relicense main.c as LGPLv3, closes 590810



commit 5a788b7154bb4d6f9193c99e53c2d6ac695c260f
Author: Tim Horton <hortont424 gmail com>
Date:   Wed Aug 5 23:49:57 2009 -0400

    Relicense main.c as LGPLv3, closes 590810

 src/main.c |   32 +++++++++++++++-----------------
 1 files changed, 15 insertions(+), 17 deletions(-)
---
diff --git a/src/main.c b/src/main.c
index 63ced75..e3bf2f5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,20 +1,20 @@
-/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/* -*- mode: C; indent-tabs-mode: t; tab-width: 8; c-basic-offset: 2; -*- */
+
 /*
- * main.c
- * Copyright (C) Robert Carr 2008 <carrr rpi edu>
- *
- * libseed is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
  *
- * libseed is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed.  If not, see <http://www.gnu.org/licenses/>.
  *
- * You should have received a copy of the GNU General Public License along
- * with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * Copyright (C) Robert Carr 2009 <carrr rpi edu>
  */
 
 #include <stdlib.h>
@@ -33,9 +33,7 @@ seed_repl (gint argc, gchar ** argv)
 {
   SeedScript *script;
 
-  script =
-    seed_make_script (eng->context,
-					  "repl = imports.repl", NULL, 0);
+  script = seed_make_script (eng->context, "repl = imports.repl", NULL, 0);
   seed_evaluate (eng->context, script, 0);
 
   g_free (script);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]